From e9cdb63903143b98cb443007755222bdfbc2efec Mon Sep 17 00:00:00 2001 From: jiangzhengwenjz Date: Sat, 5 Oct 2019 03:06:45 +0800 Subject: battle_anim_mons --- include/global.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'include/global.h') diff --git a/include/global.h b/include/global.h index 35f8de01b..5ddf9a0a8 100644 --- a/include/global.h +++ b/include/global.h @@ -76,6 +76,18 @@ extern u8 gStringVar2[]; extern u8 gStringVar3[]; extern u8 gStringVar4[]; +struct Coords8 +{ + s8 x; + s8 y; +}; + +struct UCoords8 +{ + u8 x; + u8 y; +}; + struct Coords16 { s16 x; @@ -88,6 +100,18 @@ struct UCoords16 u16 y; }; +struct Coords32 +{ + s32 x; + s32 y; +}; + +struct UCoords32 +{ + u32 x; + u32 y; +}; + struct Time { /*0x00*/ s16 days; -- cgit v1.2.3