aboutsummaryrefslogtreecommitdiff
path: root/include/vec2.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/vec2.h')
-rw-r--r--include/vec2.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/vec2.h b/include/vec2.h
new file mode 100644
index 0000000..d1957ef
--- /dev/null
+++ b/include/vec2.h
@@ -0,0 +1,8 @@
+#ifndef VEC2_H
+#define VEC2_H
+
+typedef struct {
+ int x, y;
+} vec2i;
+
+#endif /* VEC2_H */ \ No newline at end of file