From 42d7b3bb511333e242a74f360873deb64cd89522 Mon Sep 17 00:00:00 2001 From: tom Date: Mon, 2 May 2016 16:08:20 -0500 Subject: spring cleaning --- src/creature.cpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src') diff --git a/src/creature.cpp b/src/creature.cpp index 10274b6..83b9f4d 100644 --- a/src/creature.cpp +++ b/src/creature.cpp @@ -164,13 +164,4 @@ Location Creature::getLocation() return L; } -double Creature::Distance(Location A, Location B) -{ - //computes distance between two points - return sqrt(pow(A.x - B.x, 2) + pow(A.y - B.y, 2)); -} -bool Creature::doesItHaveTarget() -{ - return hasTarget; -} -- cgit v1.2.3