diff options
Diffstat (limited to 'src/libjin/Math/Vector.h')
-rw-r--r-- | src/libjin/Math/Vector.h | 18 |
1 files changed, 14 insertions, 4 deletions
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 |