Exemple #1
0
 //start a new game, putting all pieces to their correct positions
 //take the game components and reset them
 public void Reset()
 {
     foreach (Piece p in pieceList)
     {
         p.Reset();
     }
     kifu.Reset();
     turns.ResetPlayers();
     turns.StartGame();
     winnerText.gameObject.SetActive(false);
 }