summaryrefslogtreecommitdiff
path: root/Monster.h
diff options
context:
space:
mode:
authorLuke Bratch <l_bratch@yahoo.co.uk>2010-11-24 19:57:03 +0000
committerLuke Bratch <l_bratch@yahoo.co.uk>2010-11-24 19:57:03 +0000
commit3383e8be9001826bf0d09f1fb73ad5013cc8627e (patch)
tree27be0f78ab8672a7187d517c73b4ee22817369cc /Monster.h
Initial commit
Diffstat (limited to 'Monster.h')
-rw-r--r--Monster.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/Monster.h b/Monster.h
new file mode 100644
index 0000000..93fcde9
--- /dev/null
+++ b/Monster.h
@@ -0,0 +1,17 @@
+#ifndef MONSTER_H
+#define MONSTER_H
+
+#include "Creature.h"
+
+class Monster : public Creature {
+ public:
+ Monster();
+
+ // Kill the monster, in the game sense
+ void kill();
+
+ private:
+ // Nothing yet!
+};
+
+#endif