summaryrefslogtreecommitdiffstats
path: root/LevelObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'LevelObject.h')
-rw-r--r--LevelObject.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/LevelObject.h b/LevelObject.h
new file mode 100644
index 0000000..6ab93a4
--- /dev/null
+++ b/LevelObject.h
@@ -0,0 +1,20 @@
+#ifndef LEVELOBJECT_H_
+#define LEVELOBJECT_H_
+
+#include "Vertex.h"
+#include <cstring>
+
+
+class LevelObject {
+ public:
+ virtual ~LevelObject() {}
+
+ virtual const char* getType() const = 0;
+ virtual bool hit(const Vertex &v) const = 0;
+
+ bool isOfType(const char *type) const {
+ return (std::strcmp(getType(), type) == 0);
+ }
+};
+
+#endif /*LEVELOBJECT_H_*/