created input, graphics and game namespaces
[physics.git] / src / graphics / graphics.h
CommitLineData
ad9f1fb6
PG
1#ifndef GRAPHICS_H
2#define GRAPHICS_H
3
44b079f8
PG
4#include "../Vector2.h"
5
68b2316d 6
ad9f1fb6 7/// ***** Header Methods *****
617dcc71 8
68b2316d
PG
9namespace graphics
10{
11 void init();
12 void clean();
ad9f1fb6 13
68b2316d
PG
14 void drawCircle(float radius, const Vector2&, const float* color = 0);
15}
ad9f1fb6
PG
16
17#endif // GRAPHICS_H