15 lines
270 B
C
15 lines
270 B
C
#ifndef GLOBALS_H_
|
|
#define GLOBALS_H_
|
|
|
|
// Total board size
|
|
#define BRD_SIZE_X 30
|
|
#define BRD_SIZE_Y 15
|
|
|
|
// Playable board coord range values
|
|
#define PL_BRD_XS 1
|
|
#define PL_BRD_XE BRD_SIZE_X - 2
|
|
#define PL_BRD_YS 1
|
|
#define PL_BRD_YE BRD_SIZE_Y - 2
|
|
|
|
#endif // GLOBALS_H_
|