From 5a1d67d1797a3db874e44500e13237d676843185 Mon Sep 17 00:00:00 2001 From: vimene Date: Sun, 26 Nov 2023 08:43:14 +0100 Subject: added namespaces, made every function in engine.cpp static and added warnings' flags --- src/math/math_vector.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/math/math_vector.h') 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 -- cgit v1.2.3