From 87d20801300e90423c17ad425364f77152eb88c3 Mon Sep 17 00:00:00 2001 From: Tom Barrett Date: Fri, 1 May 2015 13:01:55 -0500 Subject: fixed directories and makefile --- inc/creature.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 inc/creature.h (limited to 'inc/creature.h') 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 -- cgit v1.2.3