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.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/consts.h b/src/consts.h index 141838b..78312c0 100644 --- a/src/consts.h +++ b/src/consts.h
@@ -5,9 +5,11 @@ constexpr int GAME_WIDTH = 1280;//640*2;
5constexpr int GAME_HEIGHT = 720;//480*2; 5constexpr int GAME_HEIGHT = 720;//480*2;
6constexpr int TILE_WIDTH = 8*2; 6constexpr int TILE_WIDTH = 8*2;
7constexpr int TILE_HEIGHT = TILE_WIDTH; 7constexpr int TILE_HEIGHT = TILE_WIDTH;
8constexpr int INIT_ZOOM = 5; 8constexpr int INIT_ZOOM = 2;
9constexpr int ZOOM_X_FACTOR = 16; 9constexpr int ZOOM_X_FACTOR = 16;
10constexpr int ZOOM_Y_FACTOR = 9; 10constexpr int ZOOM_Y_FACTOR = 9;
11constexpr int CHUNK_WIDTH = 80;
12constexpr int CHUNK_HEIGHT = 80;
11constexpr int RADIUS = 8; 13constexpr int RADIUS = 8;
12constexpr int NUM_TITLES = 1; 14constexpr int NUM_TITLES = 1;
13 15