summaryrefslogtreecommitdiff
path: root/inc/creature.h~
diff options
context:
space:
mode:
authorTom Barrett <tombarrett@cornell.engr.siu.edu>2015-05-01 14:02:12 -0500
committerTom Barrett <tombarrett@cornell.engr.siu.edu>2015-05-01 14:02:12 -0500
commit386279f378d49f6dddb276fbfde92fe1444b6ea1 (patch)
tree90beed57e495ac409cec72b5bf42e3d6fb702e68 /inc/creature.h~
parent7cbc9334a09540627df8845bb9952196276ae6f9 (diff)
needs cleaning, hasnt been tested
Diffstat (limited to 'inc/creature.h~')
-rw-r--r--inc/creature.h~16
1 files changed, 16 insertions, 0 deletions
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