From 5a1b126f1f6d55226c2b5068d0c17c428fd29ba8 Mon Sep 17 00:00:00 2001 From: Mel Date: Sun, 6 Aug 2023 04:27:07 +0200 Subject: Create separate Player entity and add bad collision system --- src/Math/Vector.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/Math/Vector.hpp') diff --git a/src/Math/Vector.hpp b/src/Math/Vector.hpp index 3d9cb0e..a7c3782 100644 --- a/src/Math/Vector.hpp +++ b/src/Math/Vector.hpp @@ -190,3 +190,7 @@ struct Vector { T elements[S]; }; + +using Vec2 = Vector<2, Real>; +using Vec3 = Vector<3, Real>; +using Vec4 = Vector<4, Real>; \ No newline at end of file -- cgit 1.4.1