From e72188433348c270a54879da9f086f1b527b580f Mon Sep 17 00:00:00 2001 From: chai Date: Fri, 7 Sep 2018 13:30:44 +0800 Subject: *update --- src/libjin/Math/Vector2.h | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 src/libjin/Math/Vector2.h (limited to 'src/libjin/Math/Vector2.h') diff --git a/src/libjin/Math/Vector2.h b/src/libjin/Math/Vector2.h deleted file mode 100644 index ce96ac8..0000000 --- a/src/libjin/Math/Vector2.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef __JIN_VECTOR_H -#define __JIN_VECTOR_H - -namespace jin -{ -namespace math -{ - - template - class Vector2 - { - public: - Vector2() : x(0), y(0) {}; - Vector2(T _x, T _y) :x(_x), y(_y) {}; - Vector2(const Vector2& v) - { - x = v.x; - y = v.y; - } - - T x; - T y; - - }; - -} // math -} // jin - -#endif \ No newline at end of file -- cgit v1.1-26-g67d0