restructure and add server/client example

This commit is contained in:
2025-01-24 10:34:04 +01:00
parent 729b475135
commit ec7b293bd5
30 changed files with 299 additions and 15 deletions

View File

@@ -0,0 +1,14 @@
#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;
};