summaryrefslogtreecommitdiffstats
path: root/LevelObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'LevelObject.h')
-rw-r--r--LevelObject.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/LevelObject.h b/LevelObject.h
index 5dcdd74..4cb56a4 100644
--- a/LevelObject.h
+++ b/LevelObject.h
@@ -13,6 +13,9 @@ class LevelObject : public Object {
virtual int getPriority() const = 0;
virtual void move(float x, float y) {}
+ virtual void rotate(float a) {}
+
+ virtual Vertex getCenter() const {return Vertex();}
};
#endif /*LEVELOBJECT_H_*/