More colors in porgres

This commit is contained in:
Nikola Petrov
2024-06-19 14:45:30 +02:00
parent 4f908f9f7f
commit ccc8d7ae78
3 changed files with 39 additions and 11 deletions

View File

@@ -2,12 +2,19 @@
class BackGroundColors
{
private:
public:
static void setColor();
enum class ColorSet
{
night,
day1,
day2,
day3
};
static void setColor(ColorSet color);
static Color backGroundColor;
static Color starColor;
static Color moonColor;
static Color backMountenColor;
static Color frontMountenColor;
constexpr static Color starColor = WHITE;
};