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.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/inc/creature.h b/inc/creature.h
index 5f5bb8d..eef0d03 100644
--- a/inc/creature.h
+++ b/inc/creature.h
@@ -7,6 +7,11 @@ class Creature: public Entity
{
public:
Creature(Window m, std::string s);
+ void Behavior();
+ void Action();
+ private:
+ int xT;
+ int yT;
};
#endif