aboutsummaryrefslogtreecommitdiff
path: root/src/math/math_vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/math_vector.h')
-rw-r--r--src/math/math_vector.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/math/math_vector.h b/src/math/math_vector.h
index 668a3f3..28ae81e 100644
--- a/src/math/math_vector.h
+++ b/src/math/math_vector.h
@@ -1,6 +1,8 @@
#ifndef MATH_MATH_VECTOR_H
#define MATH_MATH_VECTOR_H
+namespace engine::math {
+
class MathVector2 {
public:
float x, y;
@@ -66,4 +68,6 @@ MathVector4 operator*(float n, MathVector4 other);
MathVector4 operator*(MathVector4 other, float n);
MathVector4 operator/(MathVector4 other, float n);
+}
+
#endif // MATH_MATH_VECTOR_H