21 lines
338 B
C++
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;
|
|
};
|