summaryrefslogtreecommitdiff
path: root/inc/creature.hpp
diff options
context:
space:
mode:
authortom <tom@ground-control>2015-05-05 21:01:52 -0500
committertom <tom@ground-control>2015-05-05 21:01:52 -0500
commitaaf0a73578ecbb8212e0d224d6fff68a229b1f48 (patch)
tree46f6d91c1bc02e434812af59477e11fb5e521713 /inc/creature.hpp
parent22cd24a1fe33b6bc9f52a600feb5cdb8d868d50f (diff)
fleshed out list, locations of all creatures and resources are now within
Diffstat (limited to 'inc/creature.hpp')
-rw-r--r--inc/creature.hpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/inc/creature.hpp b/inc/creature.hpp
index ab4b328..f72dfbc 100644
--- a/inc/creature.hpp
+++ b/inc/creature.hpp
@@ -2,17 +2,22 @@
#define creature_h
#include "entity.hpp"
+#include "location.hpp"
class Creature: public Entity
{
public:
Creature(Window m, std::string s);
void Behavior();
- void Action();
-
+ void Action();
+ Location getLocation();
+
private:
int xT;
int yT;
+ int hp;
+ int hu;
+ Location K[3];
};
#endif