diff options
Diffstat (limited to 'constants/map_data_constants.asm')
-rwxr-xr-x | constants/map_data_constants.asm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/constants/map_data_constants.asm b/constants/map_data_constants.asm new file mode 100755 index 00000000..4b98bdb3 --- /dev/null +++ b/constants/map_data_constants.asm @@ -0,0 +1,14 @@ +; width of east/west connections +; height of north/south connections +MAP_BORDER EQU 3 + +; connection directions +EAST EQU 1 +WEST EQU 2 +SOUTH EQU 4 +NORTH EQU 8 + +; tileset environments +INDOOR EQU 0 +CAVE EQU 1 +OUTDOOR EQU 2 |