created input, graphics and game namespaces
[physics.git] / src / graphics / graphics.h
index 07b317a..86fe8d9 100644 (file)
@@ -3,11 +3,15 @@
 
 #include "../Vector2.h"
 
+
 /// ***** Header Methods *****
 
-void graphicsInit();
-void graphicsClean();
+namespace graphics
+{
+    void init();
+    void clean();
 
-void glDrawCircle(float radius, const Vector2&, const float* color = 0);
+    void drawCircle(float radius, const Vector2&, const float* color = 0);
+}
 
 #endif // GRAPHICS_H