X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2FEntities%2FPhysicsEntity.h;h=d229691d4911e6b679acbb1c0de420805ad88a58;hb=389bf8fdd7e1b8f4fe21e5a9fdb477d40d03d829;hp=e3ce13c1abe483c58441b3641c8996a24b0c9ce1;hpb=b85b89ba9a2cb0373209e8117046fd308faf0202;p=physics.git diff --git a/src/Entities/PhysicsEntity.h b/src/Entities/PhysicsEntity.h index e3ce13c..d229691 100644 --- a/src/Entities/PhysicsEntity.h +++ b/src/Entities/PhysicsEntity.h @@ -18,8 +18,8 @@ #ifndef PHYSICS_H #define PHYSICS_H -#include -using namespace pg; +#include +using namespace bear; #include "Entity.h" @@ -48,12 +48,12 @@ class PhysicsEntity: public Entity virtual void applyNudge(const Vector2& vecPush); //protected: - Vector2 force; + Vector2 m_force; - float mass; + float m_mass; // Coefficient of Restitution - float CoR; + float m_CoR; }; #endif // PHYSICS_H