Exemplo n.º 1
0
 public bool IsValid(Player p, int x, int y)
 {
     return(board.IsInBoard(x, y) && board[x, y] != p && playerQueue.IsPlayerInGame(p));
 }