From 836f56a40fa4a2b8e68c23b2c299e50fefe0c15d Mon Sep 17 00:00:00 2001 From: Tom Barrett Date: Sun, 12 Mar 2017 11:07:22 -0500 Subject: -renamed constants to fit new datatypes -reimplemented corpses -implemented hunger and starving (if creature is starving they will eat corpses and will take damage) -removed sides data from dna (think it is irrelavent) -removed data from dna that is not used for plants --- inc/dna.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'inc/dna.hpp') diff --git a/inc/dna.hpp b/inc/dna.hpp index 01f373b..11886e9 100644 --- a/inc/dna.hpp +++ b/inc/dna.hpp @@ -22,6 +22,8 @@ class DNA int expectedPregnancyTime; int expectedAge; int growAmount; + int hungryAmount; + int starveAmount; float reach; float speed; @@ -29,7 +31,6 @@ class DNA float mutationChance; struct Visuals{ - float sides; float red; float green; float blue; -- cgit v1.2.3