X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2Fgraphics%2Fgraphics.h;h=1f2376008daf3ba8e14b04e1bee46629b62f28b6;hb=3d1f081343dc603a3292538eeb9bd794b255deb6;hp=df3b5c23e45b585a6b145a50ca81c7f6c6f878f9;hpb=379cc454ab369431b3bdd2fe97cb2e6a1d68c26d;p=physics.git diff --git a/src/graphics/graphics.h b/src/graphics/graphics.h index df3b5c2..1f23760 100644 --- a/src/graphics/graphics.h +++ b/src/graphics/graphics.h @@ -1,12 +1,34 @@ +/* + * Copyright (C) 2008 Patrik Gornicz, Gornicz_P (at) hotmail (dot) com. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef GRAPHICS_H #define GRAPHICS_H -#include "../Vector2.h" +#include "Vector2.h" + /// ***** Header Methods ***** -void graphicsInit(); -void graphicsCleanUp(); -void glDrawCircle(float radius, const Vector2*, const float* color = 0); +namespace graphics +{ + void init(); + void clean(); + + void drawCircle(float radius, const Vector2&, const float* color = 0); +} #endif // GRAPHICS_H