Exemplo n.º 1
0
 private void PickRandomMove(Game game)
 {
     var rnd = new Random();
     var cell = game.Cells().Where(c => game[c] == BlockState.Empty).Random();
     game.Play(cell);
 }