From 11c5d147b845d4323f2e94c1ac47b6001420d8e6 Mon Sep 17 00:00:00 2001 From: tom Date: Thu, 19 Jan 2017 13:33:46 -0600 Subject: -added entity growing -added bite functionality for creature/resource -added gender (next largest feature is reproduction) -refractored creature setTarget function to make more sense -added constants for starting size of entity and max size of entity -refractored list to make make much more sense -added constants for types --- inc/list.hpp | 1 + 1 file changed, 1 insertion(+) (limited to 'inc/list.hpp') diff --git a/inc/list.hpp b/inc/list.hpp index 6800b34..64ca522 100644 --- a/inc/list.hpp +++ b/inc/list.hpp @@ -15,6 +15,7 @@ class List List(Window m); void Behavior(); void Place(); + void Remove(); double Distance(SDL_Rect A, SDL_Rect B){return sqrt(pow(A.x-B.x,2)+pow(A.y-B.y,2));}; list getNear(Creature C); -- cgit v1.2.3