diff options
author | dannye <33dannye@gmail.com> | 2020-05-09 17:55:08 -0500 |
---|---|---|
committer | dannye <33dannye@gmail.com> | 2020-05-09 17:55:08 -0500 |
commit | ff2d704ab42fdabb33a222a497d15ddb84bd314f (patch) | |
tree | 72a8e6feeb6551cf13ba99ff3aa1710fd8e3674c /src/macros/wram.asm | |
parent | e4f2842b0e3e6ecc51ef109f895a1f6f79c3956b (diff) | |
parent | 6c74edb245a25feaf202f9ee101774be9155bf48 (diff) |
Merge branch 'master' of https://github.com/pret/poketcg
Diffstat (limited to 'src/macros/wram.asm')
-rw-r--r-- | src/macros/wram.asm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/macros/wram.asm b/src/macros/wram.asm index ef7d8b2..c8b9a88 100644 --- a/src/macros/wram.asm +++ b/src/macros/wram.asm @@ -65,3 +65,18 @@ sprite_anim_struct: MACRO \1MovementCounter:: ds 1 \1Field0x0f:: ds 1 ENDM + +loaded_npc_struct: MACRO +\1ID:: ds 1 +\1Sprite:: ds 1 +\1CoordX:: ds 1 +\1CoordY:: ds 1 +\1Direction:: ds 1 +\1Field0x05:: ds 1 +\1Field0x06:: ds 1 +\1Field0x07:: ds 1 +\1Field0x08:: ds 1 +\1Field0x09:: ds 1 +\1Field0x0a:: ds 1 +\1Field0x0b:: ds 1 +ENDM |