diff --git a/Board.h b/Board.h index ea0a81c..87169c1 100755 --- a/Board.h +++ b/Board.h @@ -37,10 +37,10 @@ public: bool isThisMovePossible(int r, int c, string moveType); vector viewPossibleMoves(); string myToUpper(string input); + void displayPossibleMoves(vector input); void undo(Board& tablero); void interpret(string input, Board& tablero); void snapshot(vector& inputVec, Board inputBoard); void easyAI(); string boardToString(); - void displayPossibleMoves(vector input); -}; \ No newline at end of file +};