Files
TetrisClone/src/sc_def.h

16 lines
429 B
C

#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_ */