diplomska_naloga/inc/canvas/BackGroundColors.hpp
2024-08-12 17:53:57 +02:00

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;
};