summaryrefslogtreecommitdiff
path: root/Client/Source/Math
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Source/Math')
-rw-r--r--Client/Source/Math/Vector2.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/Client/Source/Math/Vector2.hpp b/Client/Source/Math/Vector2.hpp
index 65f2c10..fed1fe7 100644
--- a/Client/Source/Math/Vector2.hpp
+++ b/Client/Source/Math/Vector2.hpp
@@ -49,7 +49,6 @@ public:
return res;
}
-
float x, y;
static Vector2Template<T> zero;
@@ -60,7 +59,6 @@ public:
using Vector2f = Vector2Template<float>;
using Vector2i = Vector2Template<int>;
-
template<typename T>
Vector2Template<T> Vector2Template<T>::zero = Vector2Template(0, 0);
template<typename T>