diff options
Diffstat (limited to 'src/math/mat4.h')
-rw-r--r-- | src/math/mat4.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/math/mat4.h b/src/math/mat4.h index 6df9d49..d8b66c4 100644 --- a/src/math/mat4.h +++ b/src/math/mat4.h @@ -4,6 +4,8 @@ #include <array> #include "math/math_vector.h" +namespace engine::math { + class Mat4 { public: static Mat4 idty(); @@ -27,4 +29,6 @@ class Mat4 { Mat4 operator*(float fac, Mat4 m); +} + #endif // MATH_MAT4_H |