From baa7977e0e325e92c700c47b4adea9082749f1d7 Mon Sep 17 00:00:00 2001 From: tom Date: Sat, 2 May 2015 22:45:16 -0500 Subject: renamed so atom detects it is a cpp file :x --- inc/creature.hpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 inc/creature.hpp (limited to 'inc/creature.hpp') diff --git a/inc/creature.hpp b/inc/creature.hpp new file mode 100644 index 0000000..eef0d03 --- /dev/null +++ b/inc/creature.hpp @@ -0,0 +1,17 @@ +#ifndef creature_h +#define creature_h + +#include "entity.h" + +class Creature: public Entity +{ + public: + Creature(Window m, std::string s); + void Behavior(); + void Action(); + private: + int xT; + int yT; +}; + +#endif -- cgit v1.2.3