summary refs log tree commit diff stats
path: root/tools/mapedit/src/consts.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/mapedit/src/consts.h')
-rw-r--r--tools/mapedit/src/consts.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/mapedit/src/consts.h b/tools/mapedit/src/consts.h index 5e99136..dda4151 100644 --- a/tools/mapedit/src/consts.h +++ b/tools/mapedit/src/consts.h
@@ -9,5 +9,9 @@ const int MAP_WIDTH = GAME_WIDTH/TILE_WIDTH;
9const int MAP_HEIGHT = GAME_HEIGHT/TILE_HEIGHT - 1; 9const int MAP_HEIGHT = GAME_HEIGHT/TILE_HEIGHT - 1;
10const int PLAYER_WIDTH[5] = {10, 0, 0, 0, 0}; 10const int PLAYER_WIDTH[5] = {10, 0, 0, 0, 0};
11const int PLAYER_HEIGHT[5] = {12, 0, 0, 0, 0}; 11const int PLAYER_HEIGHT[5] = {12, 0, 0, 0, 0};
12const int EDITOR_SPACING_X = MAP_WIDTH * TILE_WIDTH / 2;
13const int EDITOR_SPACING_Y = MAP_HEIGHT * TILE_HEIGHT / 2;
14const int EDITOR_WIDTH = MAP_WIDTH * TILE_WIDTH + EDITOR_SPACING_X * 2;
15const int EDITOR_HEIGHT = MAP_HEIGHT * TILE_HEIGHT + EDITOR_SPACING_Y * 2;
12 16
13#endif 17#endif