massive cleaning of file section headers
[physics.git] / src / Entities / PhysicsEntity.cpp
index fba6a89..30e689e 100644 (file)
@@ -1,18 +1,24 @@
 #include "PhysicsEntity.h"
 #include "../debug.h"
 
-#include "../Vector2.h"
 #include "../effectManager.h"
+#include "../Vector2.h"
+
+
+/// ***** Constructors/Destructors *****
 
-/// ***** Public Class Methods *****
 PhysicsEntity::PhysicsEntity(const Vector2& pos)
     : Entity(pos), force(0,0), mass(1), CoR(1)
 {
+
 }
 PhysicsEntity::~PhysicsEntity()
 {
+
 }
 
+/// ***** Public Class Methods *****
+
 void PhysicsEntity::update(float time_step)
 {
     position = positionAt(time_step);