summaryrefslogtreecommitdiff
path: root/include/position.h
diff options
context:
space:
mode:
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