diff options
| author | theo3 <arisstephenson2@gmail.com> | 2020-06-18 03:04:57 -0700 |
|---|---|---|
| committer | theo3 <arisstephenson2@gmail.com> | 2020-06-18 03:04:57 -0700 |
| commit | 32ad8dec4d1bf3cdd07600802a2f00ad30a416ae (patch) | |
| tree | da8b750d07e05f559faf3623134df690a4bf25eb /include/global.h | |
| parent | 841a20ca2d152bde74fb71194f55e9f41cffb78d (diff) | |
greatFairy.c polishing
Diffstat (limited to 'include/global.h')
| -rw-r--r-- | include/global.h | 12 |
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 |
