15 lines
328 B
C++
15 lines
328 B
C++
#include <raylib.h>
|
|
|
|
class BackGroundColors
|
|
{
|
|
public:
|
|
static void setColor(int color, int time);
|
|
static Color backGroundColor;
|
|
|
|
static Color MountenColor1;
|
|
static Color MountenColor2;
|
|
static Color MountenColor3;
|
|
constexpr static Color moonColor = {240, 240, 190, 255};
|
|
constexpr static Color starColor = WHITE;
|
|
};
|