hacks that make a polygon draw
[physics.git] / src / Entities / Polygon.h
index d775352..b8c8493 100644 (file)
@@ -19,7 +19,7 @@
 #define POLYGON_H
 
 #include "PhysicsEntity.h"
-#include "../Vector2.h"
+#include "Vector2.h"
 
 #include <vector>
 using std::vector;
@@ -30,7 +30,7 @@ using std::vector;
 class Polygon: public PhysicsEntity
 {
     public:
-        Polygon(const Vector2&, vector<Vector2>);
+        Polygon(const vector<Vector2>&);
         virtual ~Polygon();
 
         virtual void draw() const;