00001 00002 00003 #ifndef VECTOR2F_H 00004 #define VECTOR2F_H 00005 00006 00007 namespace pge { 00008 00009 class Vector2f { 00010 00011 public: 00012 Vector2f(void); 00013 Vector2f(float x, float y); 00014 00015 ~Vector2f(void); 00016 00017 float m_v[2]; 00018 }; 00019 00020 }; 00021 00022 #endif