[+] After all these years I demand a Vec2

This commit is contained in:
Reece Wilson 2024-03-31 03:29:41 +01:00
parent 3085ddc97b
commit 5f69571450

View File

@ -40,11 +40,13 @@
}
};
using AuVec2 = AuFVec<2>;
using AuVec3 = AuFVec<3>;
using AuVec4 = AuFVec<4>;
#else
#include <glm/glm.hpp>
using AuVec2 = glm::vec2;
using AuVec3 = glm::vec3;
using AuVec4 = glm::vec4;
#endif