From 2e4d19ba21347cc370d1aae7a57298328b94ca4e Mon Sep 17 00:00:00 2001 From: majortom6 Date: Sun, 26 Feb 2017 07:39:15 -0600 Subject: -comepletly removed use of lists in quadtree and creature, using vectors now --- inc/list.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'inc/list.hpp') diff --git a/inc/list.hpp b/inc/list.hpp index 872d5fa..f62112c 100644 --- a/inc/list.hpp +++ b/inc/list.hpp @@ -17,7 +17,8 @@ class List void Place(); void Remove(); - std::list getNear(Creature c); + std::vector getNear(Creature c); + std::list resources; std::list creatures; -- cgit v1.2.3