treender/inc/canvas/BackGroundColors.hpp
2024-06-19 14:45:30 +02:00

21 lines
338 B
C++

#include <raylib.h>
class BackGroundColors
{
public:
enum class ColorSet
{
night,
day1,
day2,
day3
};
static void setColor(ColorSet color);
static Color backGroundColor;
static Color moonColor;
static Color backMountenColor;
static Color frontMountenColor;
constexpr static Color starColor = WHITE;
};