summaryrefslogtreecommitdiff
path: root/include/position.h
diff options
context:
space:
mode:
authorAnonymousRandomPerson <chenghanngan.us@gmail.com>2021-12-14 23:36:22 -0500
committerAnonymousRandomPerson <chenghanngan.us@gmail.com>2021-12-17 23:38:06 -0500
commitb1fc911965c584f5af6522849162527f41461b7c (patch)
tree6466b915b8223015e3c7ebad7e73d4b6755c4be2 /include/position.h
parentda8fcb2ac85554bb099dff69f1d0ec1226156afd (diff)
Decomped InSameRoom_2()
Diffstat (limited to 'include/position.h')
-rw-r--r--include/position.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/position.h b/include/position.h
new file mode 100644
index 0000000..3a24df4
--- /dev/null
+++ b/include/position.h
@@ -0,0 +1,16 @@
+#ifndef GUARD_POSITION_H
+#define GUARD_POSITION_H
+
+struct Position
+{
+ s16 x;
+ s16 y;
+};
+
+struct Position32
+{
+ s32 x;
+ s32 y;
+};
+
+#endif