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/organism.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'inc/organism.hpp') diff --git a/inc/organism.hpp b/inc/organism.hpp index 2a7a67c..954d25f 100644 --- a/inc/organism.hpp +++ b/inc/organism.hpp @@ -46,7 +46,9 @@ class Organism int health; int pregnancyTime; int age; + int hunger; + bool starving; bool gender; bool pregnate; bool hungry; -- cgit v1.2.3