rewrite initiated

This commit is contained in:
Cole
2024-01-12 16:56:44 -06:00
parent d6eea8cc97
commit eac68c789e
49 changed files with 435 additions and 22 deletions

15
src/rewrite/sc_def.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef SC_DEF_H_
#define SC_DEF_H_
#define SC_HEIGHT 640
#define SC_WIDTH 440
#define SC_GAME_WIDTH 320
#define SC_UI_WIDTH 140
/* These may fit better in a tc_raylib.h file or something of that nature */
static const Color SC_Black = {0, 0, 0, 255};
static const Color SC_Red = {230, 41, 55, 255};
static const Color SC_White = {255, 255, 255, 255};
static const Color SC_Gray = {130, 130, 130, 255};
#endif /* SC_DEF_H_ */