little cleanup
authorsaiam
Tue, 18 Nov 2008 22:54:28 +0000
changeset 69 309c11126949
parent 68 f4457e62439a
child 70 a5b7499219a4
little cleanup
src/proto2/Physics.hh
--- a/src/proto2/Physics.hh	Tue Nov 18 22:52:43 2008 +0000
+++ b/src/proto2/Physics.hh	Tue Nov 18 22:54:28 2008 +0000
@@ -39,14 +39,13 @@
         Vector velocity;
     
         PhysicsObject (PhysicsWorld &world, float mass, Vector position, Vector velocity);
+
+        virtual void applyForce (Vector force, uint16_t dt);
+        void updatePhysics (Vector position, Vector velocity);
     
     private:
         void updatePosition (void);
 
-    protected:
-        virtual void applyForce (Vector force, uint16_t dt);
-        void updatePhysics (Vector position, Vector velocity);
-    
     public:
         Vector getPosition (void);