summaryrefslogtreecommitdiff
path: root/inc/creature.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/creature.hpp')
-rw-r--r--inc/creature.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/creature.hpp b/inc/creature.hpp
index 01f6557..f9cb979 100644
--- a/inc/creature.hpp
+++ b/inc/creature.hpp
@@ -12,15 +12,15 @@
class Creature: public Entity
{
public:
- Creature(Rectangle t, DNA D);
+ Creature(Rectangle r, DNA d);
void Behavior();
void Action();
void Priority();
void setTarget();
void checkTarget();
- void moveTowards(Rectangle t);
- void impregnate(DNA D);
+ void moveTowards(Rectangle r);
+ void impregnate(DNA d);
void giveNearMe(std::list<Entity*> n){nearMe = {std::begin(n),std::end(n)};};
DNA getDNA(){return myDNA;};