created input, graphics and game namespaces
[physics.git] / src / game.h
index bf86897..5c8346e 100644 (file)
@@ -1,12 +1,17 @@
 #ifndef GAME_H
 #define GAME_H
 
+
 /// ***** Header Methods *****
-void gameInit();
-void gameClean();
 
-void gameInput();
-void gameUpdate(float);
-void gameDraw();
+namespace game
+{
+    void init();
+    void clean();
+
+    void input();
+    void update(float);
+    void draw();
+}
 
 #endif // GAME_H