summary refs log tree commit diff stats
path: root/src/consts.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/consts.h')
-rw-r--r--src/consts.h14
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
4constexpr int GAME_WIDTH = 1280;//640*2;
5constexpr int GAME_HEIGHT = 720;//480*2;
6constexpr int TILE_WIDTH = 8*2;
7constexpr int TILE_HEIGHT = TILE_WIDTH;
8constexpr int INIT_ZOOM = 5;
9constexpr int ZOOM_X_FACTOR = 16;
10constexpr int ZOOM_Y_FACTOR = 9;
11constexpr int RADIUS = 8;
12constexpr int NUM_TITLES = 1;
13
14#endif /* end of include guard: CONSTS_H_152EBF56 */