diff options
Diffstat (limited to 'src/consts.h')
-rw-r--r-- | src/consts.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/consts.h b/src/consts.h new file mode 100644 index 0000000..141838b --- /dev/null +++ b/src/consts.h | |||
@@ -0,0 +1,14 @@ | |||
1 | #ifndef CONSTS_H_152EBF56 | ||
2 | #define CONSTS_H_152EBF56 | ||
3 | |||
4 | constexpr int GAME_WIDTH = 1280;//640*2; | ||
5 | constexpr int GAME_HEIGHT = 720;//480*2; | ||
6 | constexpr int TILE_WIDTH = 8*2; | ||
7 | constexpr int TILE_HEIGHT = TILE_WIDTH; | ||
8 | constexpr int INIT_ZOOM = 5; | ||
9 | constexpr int ZOOM_X_FACTOR = 16; | ||
10 | constexpr int ZOOM_Y_FACTOR = 9; | ||
11 | constexpr int RADIUS = 8; | ||
12 | constexpr int NUM_TITLES = 1; | ||
13 | |||
14 | #endif /* end of include guard: CONSTS_H_152EBF56 */ | ||