Ejemplo n.º 1
0
 protected override void ThreadFunction()
 {
     // Do your threaded task. DON'T use the Unity API here
     moveStrategy = new AlphaBeta(4);
     bestMove     = moveStrategy.execute(board);
 }