summary refs log tree commit diff stats
path: root/tools/mapedit/src/consts.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2015-03-18 00:51:41 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2015-03-18 00:51:41 -0400
commitf83f5af19fc828806df8be7807ca418cfd0306da (patch)
tree5d0495a0a605eb38ad72830ca4b7cede9004909f /tools/mapedit/src/consts.h
parent2e66b27372b3547ea98ec914974c4fcdedd08053 (diff)
downloadtherapy-f83f5af19fc828806df8be7807ca418cfd0306da.tar.gz
therapy-f83f5af19fc828806df8be7807ca418cfd0306da.tar.bz2
therapy-f83f5af19fc828806df8be7807ca418cfd0306da.zip
Added ghosts of adjacent warp maps to map editor widget
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