Files
sanke/globals.h
2024-08-02 16:37:41 +03:00

17 lines
292 B
C

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