added DASSERT
[physics.git] / src / game.cpp
index 3b7a34b..08f9530 100644 (file)
@@ -65,9 +65,7 @@ void game::init()
 
     effect::init();
 
-#ifdef DEBUGGING
-    cout << "World Created" << endl;
-#endif
+    DPF(0, "World Created");
 }
 
 void game::clean()
@@ -81,8 +79,11 @@ void game::clean()
     delete running;
 }
 
-void game::input()
+void game::handleInput()
 {
+    creator::handleInput();
+
+
     if(running->pushMe())
         push_State = running;