diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2019-10-14 10:41:27 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2019-10-14 10:46:04 -0400 |
commit | b8fec3d9f617ec9a764bb56804c526ff7449631f (patch) | |
tree | 2e84d0bf6107a15ebcb94a23c3158e2bc6382f6f /include/global.h | |
parent | 9fe74ac590f75a0571de8ebcd499fdf892419328 (diff) | |
parent | 8efae5c807bf6b27f5c90bfb0c5887dbde24f10d (diff) |
Merge branch 'master' into trade
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 24 |
1 files changed, 24 insertions, 0 deletions
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; |