From ba6b1fa8fdc3a0856a720695dd40efadc6e5889c Mon Sep 17 00:00:00 2001 From: tom Date: Tue, 7 Feb 2017 13:18:44 -0600 Subject: -added aging -added speed increasing, but right now it is on arrow keys due to sdl errors with + and -, eventually the arrow keys will be used to pan the camera, and speed will be done with a graphic and the + and - keys --- inc/constants.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'inc/constants.hpp') 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; -- cgit v1.2.3