From 84d63287c4d052052c9975714bbc253b18d28920 Mon Sep 17 00:00:00 2001 From: tom Date: Sun, 22 Nov 2015 19:41:09 -0600 Subject: removed occupied, just used men vector --- inc/Character.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'inc/Character.hpp') diff --git a/inc/Character.hpp b/inc/Character.hpp index 3111154..9773762 100644 --- a/inc/Character.hpp +++ b/inc/Character.hpp @@ -14,8 +14,8 @@ class Character Character(char nSymbol, int nColor, Location L); void move(Location L){l=L;} void draw(WINDOW * w); - Location action(vector occupied); - bool check(Location L, vector occupied); + Location action(vector men); + bool check(Location L, vector men); Location getLocation(){return l;} char getSymbol(){return symbol;} -- cgit v1.2.3