change to manager namespace, cleaned indentation in manager
[physics.git] / src / GameStates / Running.cpp
index 10026da..a09f912 100644 (file)
@@ -4,11 +4,11 @@
 /// ***** Constructors/Destructors *****
 Running::Running()
 {
-    entityManager::init();
+    manager::init();
 }
 Running::~Running()
 {
-    entityManager::clean();
+    manager::clean();
 }
 
 /// ***** Public Class Methods *****
@@ -16,17 +16,17 @@ void Running::handleInput(bool on_top) const
 {
     if( on_top )
     {
-        entityManager::handleInput();
+        manager::handleInput();
     }
 }
 void Running::update(float time_step, bool on_top) const
 {
     if( on_top )
     {
-        entityManager::update(time_step);
+        manager::update(time_step);
     }
 }
 void Running::draw(bool on_top) const
 {
-    entityManager::draw();
+    manager::draw();
 }