moved ticks to lib
[physics.git] / src / main.cpp
index a6aaca3..05f9a25 100644 (file)
  */
 
 #include <pg/debug.h>
+#include <pg/ticks.h>
 using namespace pg;
 
+#include <iostream>
+using std::cout;
+using std::endl;
+
 #include <GL/gl.h>
 #include <GL/glu.h>
 #include <SDL/SDL.h>
@@ -25,7 +30,6 @@ using namespace pg;
 #include "handleSignal.h"
 
 #include "game.h"
-#include "ticks.h"
 
 #include "graphics/graphics.h"
 #include "input/inputManager.h"
@@ -108,7 +112,7 @@ void mainInit()
 }
 void mainClean()
 {
-    debug::clean();
+    debug::fini();
 }
 
 void updatesInit()