added using namespace pg to relavent files ... will remove at some point
[physics.git] / src / graphics / graphics.h
index 1f23760..ec07616 100644 (file)
 #ifndef GRAPHICS_H
 #define GRAPHICS_H
 
-#include "Vector2.h"
+#include <pg/Vector2.h>
+using namespace pg;
+
+#include <vector>
 
 
 /// ***** Header Methods *****
@@ -29,6 +32,7 @@ namespace graphics
     void clean();
 
     void drawCircle(float radius, const Vector2&, const float* color = 0);
+    void drawPolygon(const std::vector<Vector2>& points, const float* color = 0);
 }
 
 #endif // GRAPHICS_H