summaryrefslogtreecommitdiff
path: root/include/global.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/global.h')
-rw-r--r--include/global.h24
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;