summaryrefslogtreecommitdiffstats
path: root/LevelObject.h
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2007-12-14 19:22:04 +0100
committerneoraider <devnull@localhost>2007-12-14 19:22:04 +0100
commit9a1bbf4b9ae00bfe6ef7c5c251bae0da9b624d9c (patch)
tree267713fcf9eb34f597f9ad1af6fc2f78a77831ee /LevelObject.h
parenta8c1d6168797526b9d24bc8c86f2578f3be59fa8 (diff)
downloadzoomedit-9a1bbf4b9ae00bfe6ef7c5c251bae0da9b624d9c.tar
zoomedit-9a1bbf4b9ae00bfe6ef7c5c251bae0da9b624d9c.zip
zoomedit: Fixed some PlayerStart related bugs.
Diffstat (limited to 'LevelObject.h')
-rw-r--r--LevelObject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/LevelObject.h b/LevelObject.h
index 6ab93a4..d7dbf4f 100644
--- a/LevelObject.h
+++ b/LevelObject.h
@@ -11,6 +11,7 @@ class LevelObject {
virtual const char* getType() const = 0;
virtual bool hit(const Vertex &v) const = 0;
+ virtual int getPriority() const = 0;
bool isOfType(const char *type) const {
return (std::strcmp(getType(), type) == 0);