starting windows cross compiling
[physics.git] / src / main.cpp
index 7576077..1e9d4ad 100644 (file)
@@ -86,7 +86,7 @@ float num = 10;
 float total = 0;
 
 /// ***** MAIN Method *****
-int main()
+int main(int argc, char** args)
 {
     init();
     run();
@@ -102,13 +102,30 @@ void init()
 
     graphics::init();
 
+#ifdef DEBUGGING
+    cout << "Graphics initialized" << endl;
+    cout << "Graphics initialized2" << endl;
+#endif
+
     game::init();
 
+#ifdef DEBUGGING
+    cout << "Game initialized" << endl;
+#endif
+
     input::init();
 
+#ifdef DEBUGGING
+    cout << "Input initialized" << endl;
+#endif
+
     cfg::init();
 
 #ifdef DEBUGGING
+    cout << "Configs initialized" << endl;
+#endif
+
+#ifdef DEBUGGING
     cout << "Initialization Complete" << endl;
 #endif
 }