aboutsummaryrefslogtreecommitdiff
path: root/src/position.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/position.h')
-rw-r--r--src/position.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/position.h b/src/position.h
new file mode 100644
index 0000000..d1bc9eb
--- /dev/null
+++ b/src/position.h
@@ -0,0 +1,13 @@
+#ifndef POSITION_H
+#define POSITION_H
+
+typedef struct Position
+{
+ unsigned int x;
+ unsigned int y;
+} Position;
+
+Position position_create(unsigned int x, unsigned int y);
+
+#endif
+