summaryrefslogtreecommitdiff
path: root/inc/creature.hpp
diff options
context:
space:
mode:
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