From 3bb587f0d7c471a70683fa7d26939d21968dea98 Mon Sep 17 00:00:00 2001 From: chai Date: Sun, 2 Sep 2018 10:08:58 +0800 Subject: *update --- src/libjin/Math/Vector.h | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'src/libjin/Math/Vector.h') diff --git a/src/libjin/Math/Vector.h b/src/libjin/Math/Vector.h index 43e249e..0fbdc87 100644 --- a/src/libjin/Math/Vector.h +++ b/src/libjin/Math/Vector.h @@ -5,10 +5,20 @@ namespace jin { namespace math { - - -} -} + class Vector2 + { + public: + Vector2(); + Vector2(float _x, float _y); + Vector2(const Vector2& v); + + float x; + float y; + + }; + +} // math +} // jin #endif \ No newline at end of file -- cgit v1.1-26-g67d0