massive cleaning of file section headers
[physics.git] / src / Entities / Entity.cpp
index 5365bcc..e3b3869 100644 (file)
@@ -1,7 +1,19 @@
 #include "Entity.h"
+
 #include "../Vector2.h"
 
-#include <iostream>
+
+/// ***** Constructors/Destructors *****
+
+Entity::Entity(const Vector2& pos)
+  : position(pos), velocity(0,0)
+{
+
+}
+Entity::~Entity()
+{
+
+}
 
 /// ***** Public Class Methods *****
 
@@ -14,12 +26,3 @@ const Vector2& Entity::velocityRaw() const
     return velocity;
 }
 
-Entity::Entity(const Vector2& pos)
-  : position(pos), velocity(0,0)
-{
-
-}
-Entity::~Entity()
-{
-
-}