#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