progress
This commit is contained in:
16
globals.h
Normal file
16
globals.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef GLOBALS_H
|
||||
#define GLOBALS_H
|
||||
|
||||
#define BUF_SIZE 256
|
||||
|
||||
// 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
|
||||
Reference in New Issue
Block a user