X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2Fgraphics%2Fgraphics.h;fp=src%2Fgraphics%2Fgraphics.h;h=86fe8d98677308c9d1471563da230fade230a90b;hb=68b2316d5438e8ebaaa7f7fdaa8292a8a290e14d;hp=07b317a6c6d9693e126dd5e10292c1fa370001d1;hpb=617dcc71d9a71663f63fb56ffac2505b45bf91b9;p=physics.git diff --git a/src/graphics/graphics.h b/src/graphics/graphics.h index 07b317a..86fe8d9 100644 --- a/src/graphics/graphics.h +++ b/src/graphics/graphics.h @@ -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