mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-10-07 01:56:32 +08:00
12 lines
292 B
C++
12 lines
292 B
C++
#ifndef COLORSCHEME_HPP
|
|
#define COLORSCHEME_HPP
|
|
|
|
/// Wrapper file to make the color schemes available to using applications
|
|
/// without the circular include headaches.
|
|
|
|
#include "ColorScheme/ColorSchemeBase.hpp"
|
|
#include "ColorScheme/Default.hpp"
|
|
#include "ColorScheme/Solarized.hpp"
|
|
|
|
#endif
|