diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/constants.hpp | 3 | ||||
-rw-r--r-- | inc/creature.hpp | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/inc/constants.hpp b/inc/constants.hpp index fd00fb1..5ec55b2 100644 --- a/inc/constants.hpp +++ b/inc/constants.hpp @@ -3,7 +3,7 @@ const int CREATURES = 10; const int RESOURCES = 100; -const int MINIMUM_RESOURCES = 70; +const int MINIMUM_RESOURCES = 80; const int WINDOW_X = 500; const int WINDOW_Y = 500; @@ -20,6 +20,7 @@ const int CREATURE_SIZE_START = 5; const int CREATURE_BITE = 10; const int CREATURE_AMOUNT_TO_GROW = 50; const int CREATURE_EXPECTED_PREGNANCY_TIME = 100; +const int CREATURE_EXPECTED_AGE = 100000; const int RESOURCE_SIZE_START = 1; const int RESOURCE_SIZE_MAX = 4; diff --git a/inc/creature.hpp b/inc/creature.hpp index 79ec4c3..1676be0 100644 --- a/inc/creature.hpp +++ b/inc/creature.hpp @@ -42,6 +42,8 @@ class Creature: public Entity int amountToGrow; int pregnancyTime; int expectedPregnancyTime; + int age; + int expectedAge; bool hungry; bool pregnancyReady; |