remove old code and move rewrite to src proper, added new textures

This commit is contained in:
John Landers
2024-01-15 23:17:48 -06:00
parent c110396954
commit fcdf44221f
62 changed files with 97 additions and 689 deletions

15
src/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_ */