named members m_* to quite -Wshadow
[physics.git] / src / Entities / Particle.h
index 34c8f64..cad470f 100644 (file)
@@ -44,10 +44,10 @@ class Particle: public Entity
         virtual void update(float);
 
     protected:
-        float lifeTime;
+        float m_lifeTime;
 
-        bool isDead;
-        bool canDie;
+        bool m_isDead;
+        bool m_canDie;
 };
 
 #endif // PARTICLE_H