named members m_* to quite -Wshadow
[physics.git] / src / Entities / Polygon.h
index 6b115fc..7941f88 100644 (file)
@@ -18,7 +18,8 @@
 #ifndef POLYGON_H
 #define POLYGON_H
 
-#include <pg/Vector2.h>
+#include <bear/Vector2.h>
+using namespace bear;
 
 #include "PhysicsEntity.h"
 
@@ -37,12 +38,13 @@ class Polygon: public PhysicsEntity
         virtual void draw() const;
 
     //protected:
-        Vector2 maxP; // stores the max bounding box point
-        Vector2 minP; // stores the min bounding box point
+        Vector2 m_maxP; // stores the max bounding box point
+        Vector2 m_minP; // stores the min bounding box point
 
-        vector<Vector2> points;
+        vector<Vector2> m_points;
 
-        const float* color;
+        const float* m_color;
+        
     private:
         void createBindingBox();
         void centerPosition();