summaryrefslogtreecommitdiff
path: root/inc/Character.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/Character.hpp')
-rw-r--r--inc/Character.hpp4
1 files changed, 2 insertions, 2 deletions
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 <Location> occupied);
- bool check(Location L, vector <Location> occupied);
+ Location action(vector <Character> men);
+ bool check(Location L, vector <Character> men);
Location getLocation(){return l;}
char getSymbol(){return symbol;}