summaryrefslogtreecommitdiff
path: root/inc/Character.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/Character.hpp')
-rw-r--r--inc/Character.hpp12
1 files changed, 5 insertions, 7 deletions
diff --git a/inc/Character.hpp b/inc/Character.hpp
index 1f948f2..607e8ea 100644
--- a/inc/Character.hpp
+++ b/inc/Character.hpp
@@ -11,15 +11,13 @@ using namespace std;
class Character
{
public:
- Character(char nSymbol, int nColor,int nRow, int nCol);
- void move(Location L);
+ Character(char nSymbol, int nColor, Location L);
+ void move(Location L){l.x=L.x;l.y=L.y;}
void draw(WINDOW * w);
- bool action(vector <Location> occupied);
- bool check(Location L, vector <Location> occupied);
- int getRow();
- int getCol();
+ Location action(vector <Location> occupied);
+ bool check(Location L, vector <Location> occupied);
Location getLocation(){return l;}
- char getSymbol();
+ char getSymbol(){return symbol;}
private:
string order = "wander";