Пример #1
0
 /// <summary>
 /// Return the list of all posibles moves
 /// </summary>
 /// <returns>List of possibles moves</returns>
 public List <Tuple <int, int> > ListOps()
 {
     return(board.GetPossibleMove(isWhitePlayer));
 }