#pragma once #include #include "Board.h" using namespace std; string myToUpper(string input); struct moves { int row; char column; string moveType; moves(int linea, int columna, string m) { row = linea; column = columna; moveType = m; } }; void displayPossibleMoves(vector input) { cout<<"\n\nList of possible Moves:"<