diff options
Diffstat (limited to 'Room.h')
-rw-r--r-- | Room.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ class Room : public LevelObject, private VertexProvider, private EdgeProvider { const Polygon& getPolygon() const {return polygon;} - virtual bool hit(const Vertex &v, float scale) const {return polygon.contains(v);} + virtual bool hit(const Vertex &v) const {return polygon.contains(v);} virtual int getPriority() const {return 0;} virtual std::vector<SharedPtr<LevelObject> > getChildren(); |