named members m_* to quite -Wshadow
[physics.git] / src / Entities / Particle.h
index 51c85a4..cad470f 100644 (file)
@@ -18,8 +18,8 @@
 #ifndef PARTICLE_H
 #define PARTICLE_H
 
-#include <pg/Vector2.h>
-using namespace pg;
+#include <bear/Vector2.h>
+using namespace bear;
 
 #include "Entity.h"
 
@@ -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