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