diff options
author | yenatch <yenatch@gmail.com> | 2013-12-22 20:47:57 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-12-22 21:28:41 -0500 |
commit | 48db6daef9741aafaf0ff339c01f9e7920089f8e (patch) | |
tree | db9c36c79b07e060aecd6c1c0a8694b52dfcae3e /constants | |
parent | 496502b3dc16318cf59dd41d8462330f66cd19d6 (diff) |
overworld object struct constants
Diffstat (limited to 'constants')
-rw-r--r-- | constants/map_constants.asm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/constants/map_constants.asm b/constants/map_constants.asm index 8c9d1a505..2e451f41e 100644 --- a/constants/map_constants.asm +++ b/constants/map_constants.asm @@ -1767,3 +1767,19 @@ CAVE EQU 4 GATE EQU 6 DUNGEON EQU 7 +; object struct +OBJECT_SPRITE EQU $2 +OBJECT_FLAGS EQU $5 +OBJECT_PALETTE EQU $6 +OBJECT_FACING EQU $d +OBJECT_STANDING_TILE EQU $e +OBJECT_NEXT_TILE EQU $f +OBJECT_MAP_X EQU $10 +OBJECT_MAP_Y EQU $11 +OBJECT_NEXT_MAP_X EQU $12 +OBJECT_NEXT_MAP_Y EQU $13 +OBJECT_SPRITE_X EQU $17 +OBJECT_SPRITE_Y EQU $18 +OBJECT_SPRITE_X_OFFSET EQU $19 +OBJECT_SPRITE_Y_OFFSET EQU $1a + |