X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2Fgraphics%2Fgraphics.h;h=94a2d5c6768e9d2fe602fddfd2dbf184eb81a535;hb=f32a9b7c8eab3536ad354f85ee65c41d5b5da006;hp=86fe8d98677308c9d1471563da230fade230a90b;hpb=68b2316d5438e8ebaaa7f7fdaa8292a8a290e14d;p=physics.git diff --git a/src/graphics/graphics.h b/src/graphics/graphics.h index 86fe8d9..94a2d5c 100644 --- a/src/graphics/graphics.h +++ b/src/graphics/graphics.h @@ -1,7 +1,26 @@ +/* + * 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 + +#include /// ***** Header Methods ***** @@ -12,6 +31,7 @@ namespace graphics void clean(); void drawCircle(float radius, const Vector2&, const float* color = 0); + void drawPolygon(const std::vector& points, const float* color = 0); } #endif // GRAPHICS_H