mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-06-04 11:14:17 +08:00
16 lines
219 B
C++
16 lines
219 B
C++
#ifndef slic3r_MacDarkMode_hpp_
|
|
#define slic3r_MacDarkMode_hpp_
|
|
|
|
namespace Slic3r {
|
|
namespace GUI {
|
|
|
|
#if __APPLE__
|
|
extern bool mac_dark_mode();
|
|
#endif
|
|
|
|
|
|
} // namespace GUI
|
|
} // namespace Slic3r
|
|
|
|
#endif // MacDarkMode_h
|