renamed a few more members and changed some switch statements
[physics.git] / src / Entities / Entity.h
index e59f4fd..8e70b99 100644 (file)
@@ -18,7 +18,8 @@
 #ifndef ENTITY_H
 #define ENTITY_H
 
-#include <pg/Vector2.h>
+#include <bear/Vector2.h>
+using namespace bear;
 
 
 /// ***** Header Class *****
@@ -38,8 +39,8 @@ class Entity
     const Vector2& velocityRaw() const;
 
   protected:
-    Vector2 position;
-    Vector2 velocity;
+    Vector2 m_position;
+    Vector2 m_velocity;
 };
 
 #endif // ENTITY_H