コード例 #1
0
ファイル: GameAI.cs プロジェクト: qubitz/connect-dimensions
 //gets a move using a separate thread
 private static Thread GetMoveAsync(MoveJob moveJob)
 {
     return(new Thread(() => moveJob.GetMove()));
 }