aboutsummaryrefslogtreecommitdiff
path: root/include/vec2.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/vec2.h')
-rw-r--r--include/vec2.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/vec2.h b/include/vec2.h
index d1957ef..3e33cfb 100644
--- a/include/vec2.h
+++ b/include/vec2.h
@@ -5,4 +5,8 @@ typedef struct {
int x, y;
} vec2i;
-#endif /* VEC2_H */ \ No newline at end of file
+typedef struct {
+ float x, y;
+} vec2f;
+
+#endif /* VEC2_H */