aboutsummaryrefslogtreecommitdiff
path: root/include/mgl/system/vec.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mgl/system/vec.h')
-rw-r--r--include/mgl/system/vec.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/mgl/system/vec.h b/include/mgl/system/vec.h
new file mode 100644
index 0000000..8b87376
--- /dev/null
+++ b/include/mgl/system/vec.h
@@ -0,0 +1,12 @@
+#ifndef MGL_VEC_H
+#define MGL_VEC_H
+
+typedef struct {
+ float x, y;
+} mgl_vec2f;
+
+typedef struct {
+ int x, y;
+} mgl_vec2i;
+
+#endif /* MGL_VEC_H */