1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#ifndef __JIN_VECTOR_H #define __JIN_VECTOR_H namespace jin { namespace math { class Vector2 { public: Vector2(); Vector2(float _x, float _y); Vector2(const Vector2& v); float x; float y; }; } // math } // jin #endif