From aa5c31be6ec6a688e8d3a66c770ba99be8e060c9 Mon Sep 17 00:00:00 2001 From: tom Date: Sun, 12 Feb 2017 05:59:12 -0600 Subject: -minor constant changes -implemented dna structure, which carries the creatures attributes suchas speed and reach -currently a child inherits 100% the same dna as the mother -removed sing namespace std --- inc/list.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'inc/list.hpp') diff --git a/inc/list.hpp b/inc/list.hpp index cc78031..7d3d8a2 100644 --- a/inc/list.hpp +++ b/inc/list.hpp @@ -17,12 +17,12 @@ class List void Behavior(); void Place(); void Remove(); - list getNear(Creature C); + std::list getNear(Creature C); private: Window main = Window("do not create new window."); - list R; - list C; + std::list R; + std::list C; }; #endif -- cgit v1.2.3