Ejemplo n.º 1
0
 /// <summary>
 /// Sets the cheater ai from inspector button
 /// </summary>
 public void SetCheaterAi()
 {
     AiPlayerType = AiPlayerType.Cheater;
     InitInputManagers();
     InitGameManager();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Sets the honest ai from inspector button
 /// </summary>
 public void SetHonestAi()
 {
     AiPlayerType = AiPlayerType.Honest;
     InitInputManagers();
     InitGameManager();
 }