summaryrefslogtreecommitdiffstats
path: root/LevelObject.h
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2008-02-08 22:21:01 +0100
committerneoraider <devnull@localhost>2008-02-08 22:21:01 +0100
commitacb1721e94a49a4941bb11dfc2f832c3848aa204 (patch)
tree6398053a11b46242974ae171d700418bd42c92b8 /LevelObject.h
parenta39525ca36e2c002332f914907f74061533c2b04 (diff)
downloadzoomedit-acb1721e94a49a4941bb11dfc2f832c3848aa204.tar
zoomedit-acb1721e94a49a4941bb11dfc2f832c3848aa204.zip
zoomedit: Implemented Rotate tool; added simple gates.
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_*/