summaryrefslogtreecommitdiff
path: root/include/global.h
diff options
context:
space:
mode:
authortheo3 <arisstephenson2@gmail.com>2020-06-18 03:04:57 -0700
committertheo3 <arisstephenson2@gmail.com>2020-06-18 03:04:57 -0700
commit32ad8dec4d1bf3cdd07600802a2f00ad30a416ae (patch)
treeda8b750d07e05f559faf3623134df690a4bf25eb /include/global.h
parent841a20ca2d152bde74fb71194f55e9f41cffb78d (diff)
greatFairy.c polishing
Diffstat (limited to 'include/global.h')
-rw-r--r--include/global.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/global.h b/include/global.h
index 13f67e6e..d312b7b2 100644
--- a/include/global.h
+++ b/include/global.h
@@ -47,4 +47,16 @@
#define min(a, b) ((a) < (b) ? (a) : (b))
#define max(a, b) ((a) >= (b) ? (a) : (b))
+struct Coords16
+{
+ s16 x;
+ s16 y;
+} PACKED;
+
+struct UCoords16
+{
+ u16 x;
+ u16 y;
+};
+
#endif // GUARD_GLOBAL_H