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.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/mgl/system/vec.h b/include/mgl/system/vec.h
index 8b87376..444efcf 100644
--- a/include/mgl/system/vec.h
+++ b/include/mgl/system/vec.h
@@ -6,7 +6,23 @@ typedef struct {
} mgl_vec2f;
typedef struct {
+ float x, y, z;
+} mgl_vec3f;
+
+typedef struct {
+ float x, y, z, w;
+} mgl_vec4f;
+
+typedef struct {
int x, y;
} mgl_vec2i;
+typedef struct {
+ int x, y, z;
+} mgl_vec3i;
+
+typedef struct {
+ int x, y, z, w;
+} mgl_vec4i;
+
#endif /* MGL_VEC_H */