renamed a few more members and changed some switch statements
[physics.git] / src / Entities / Point.h
index e0277f7..bfc83f3 100644 (file)
 #ifndef POINT_H
 #define POINT_H
 
+#include <bear/Vector2.h>
+using namespace bear;
+
 #include "Particle.h"
-#include "Vector2.h"
 
 
 /// ***** Header Class *****
@@ -34,7 +36,7 @@ class Point: public Particle
         virtual void draw();
 
      protected:
-        float radius;
+        float m_radius;
         // color
 };