pokered/constants/map_data_constants.asm
Rangi 9878f01e29 Organize macros/ like pokecrystal
While doing so I replaced the StopAllMusic macro with a SFX_STOP_ALL_MUSIC constant and applied it throughout the code.
2020-07-03 16:37:47 -04:00

14 lines
225 B
NASM
Executable file

; 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