diff --git a/include/cglmath/vector2i.h b/include/cglmath/vector2i_type.h similarity index 52% rename from include/cglmath/vector2i.h rename to include/cglmath/vector2i_type.h index 948128a..de81c05 100644 --- a/include/cglmath/vector2i.h +++ b/include/cglmath/vector2i_type.h @@ -1,8 +1,8 @@ #pragma once -struct vector2i +typedef struct vector2i { int x; int y; -}; \ No newline at end of file +} Vector2i; \ No newline at end of file diff --git a/include/cglmath/vector3i.h b/include/cglmath/vector3i_type.h similarity index 58% rename from include/cglmath/vector3i.h rename to include/cglmath/vector3i_type.h index 3d96993..9781559 100644 --- a/include/cglmath/vector3i.h +++ b/include/cglmath/vector3i_type.h @@ -1,9 +1,9 @@ #pragma once -struct vector3i +typedef struct vector3i { int x; int y; int z; -}; +} Vector3i;