From 386279f378d49f6dddb276fbfde92fe1444b6ea1 Mon Sep 17 00:00:00 2001 From: Tom Barrett Date: Fri, 1 May 2015 14:02:12 -0500 Subject: needs cleaning, hasnt been tested --- inc/creature.h~ | 16 ++++++++++++++++ 1 file changed, 16 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..19d4cb3 --- /dev/null +++ b/inc/creature.h~ @@ -0,0 +1,16 @@ +#ifndef creature_h +#define creature_h + +#include "entity.h" + +class Creature: public Entity +{ + public: + Creature(Window m, std::string s); + void Behavior(); + private: + int xT; + int yT; +}; + +#endif -- cgit v1.2.3