예제 #1
0
파일: AIPlayer.cs 프로젝트: ngeor/games
 private void PickRandomMove(Game game)
 {
     var rnd = new Random();
     var cell = game.Cells().Where(c => game[c] == BlockState.Empty).Random();
     game.Play(cell);
 }