permission hook working correctly, good bye temp file
[physics.git] / src / Entities / Entity.cpp
index 462fcd0..e3b3869 100644 (file)
@@ -1,9 +1,9 @@
 #include "Entity.h"
+
 #include "../Vector2.h"
 
-#include <iostream>
 
-/// ***** Public Class Methods *****
+/// ***** Constructors/Destructors *****
 
 Entity::Entity(const Vector2& pos)
   : position(pos), velocity(0,0)
@@ -14,3 +14,15 @@ Entity::~Entity()
 {
 
 }
+
+/// ***** Public Class Methods *****
+
+const Vector2& Entity::positionRaw() const
+{
+    return position;
+}
+const Vector2& Entity::velocityRaw() const
+{
+    return velocity;
+}
+