renamed a few more members and changed some switch statements
[physics.git] / src / Entities / Point.cpp
index 58dd0da..b62e894 100644 (file)
@@ -24,12 +24,12 @@ using namespace bear;
 /// ***** Constructors/Destructors *****
 
 Point::Point(const Vector2& org, bool canDie)
-    : Particle(org, canDie), radius(2)
+    : Particle(org, canDie), m_radius(2)
 {
 
 }
 Point::Point(const Vector2& org, float life_time)
-    : Particle(org, life_time), radius(2)
+    : Particle(org, life_time), m_radius(2)
 {
 
 }