summaryrefslogtreecommitdiff
path: root/inc/creature.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/creature.h')
-rw-r--r--inc/creature.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/inc/creature.h b/inc/creature.h
new file mode 100644
index 0000000..5f5bb8d
--- /dev/null
+++ b/inc/creature.h
@@ -0,0 +1,12 @@
+#ifndef creature_h
+#define creature_h
+
+#include "entity.h"
+
+class Creature: public Entity
+{
+ public:
+ Creature(Window m, std::string s);
+};
+
+#endif