nuclear@3: #ifndef VEC_H_ nuclear@3: #define VEC_H_ nuclear@3: nuclear@4: namespace goatkit { nuclear@3: nuclear@3: class Vec2 { nuclear@3: public: nuclear@3: float x, y; nuclear@3: nuclear@3: Vec2() : x(0), y(0) {} nuclear@3: Vec2(float xx, float yy) : x(xx), y(yy) {} nuclear@3: }; nuclear@3: nuclear@4: } // namespace goatkit nuclear@3: nuclear@3: #endif // VEC_H_