更名FINDBOOM为MineSweepe

正式初步完成了MineSweepe
This commit is contained in:
wlx
2025-07-19 15:37:01 +08:00
parent a262e8d508
commit a3b2d6c7c8
30 changed files with 278 additions and 468 deletions

View File

@ -18,12 +18,14 @@ typedef struct Color {
int r,g,b,a;
} Color;
#define RED (Color){150,40,40,255}
#define GREEN (Color){40,150,40,255}
#define BLUE (Color){40,40,150,255}
#define SQUARE (Color){0xC0,0XC0,0XC0,255}
#define BACKGROUND (Color){0x24,0x49,0X5E,255}
#define BUTTON (Color){0X2c,0X3E,0X50,255}
#define FLOW (Color){0xD9,0xD9,0xD9}
void initGame(const char* name, int width, int height);
void gameLoop();
void setColor(Color color);
void windowClose();
#endif //RUNNING_H