summaryrefslogtreecommitdiff
path: root/src/point.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/point.h')
-rw-r--r--src/point.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/point.h b/src/point.h
new file mode 100644
index 0000000..f67327b
--- /dev/null
+++ b/src/point.h
@@ -0,0 +1,8 @@
+#ifndef POINT_H
+#define POINT_H
+
+struct Point {
+ int x, y;
+};
+
+#endif