diff --git a/include/athena/Types.hpp b/include/athena/Types.hpp index a7b6cac..dc6ba27 100644 --- a/include/athena/Types.hpp +++ b/include/athena/Types.hpp @@ -13,24 +13,24 @@ using atUint64 = uint64_t; // Vector types #include "simd/simd.hpp" -typedef struct { +struct atVec2f { athena::simd simd; -} atVec2f; -typedef struct { +}; +struct atVec3f { athena::simd simd; -} atVec3f; -typedef struct { +}; +struct atVec4f { athena::simd simd; -} atVec4f; -typedef struct { +}; +struct atVec2d { athena::simd simd; -} atVec2d; -typedef struct { +}; +struct atVec3d { athena::simd simd; -} atVec3d; -typedef struct { +}; +struct atVec4d { athena::simd simd; -} atVec4d; +}; #ifndef UNUSED #define UNUSED(x) ((void)x)