named members m_* to quite -Wshadow
[physics.git] / src / Entities / Polygon.h
index 6624c95..7941f88 100644 (file)
@@ -38,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();