Exemplo n.º 1
0
 public void HideEndTurnButton()
 {
     if (ActivePlayer.GetType() == typeof(Player))
     {
         endTurnButton.Hide();
     }
 }
Exemplo n.º 2
0
 public void ShowEndTurnButton()
 {
     if (ActivePlayer.GetType() == typeof(Player))
     {
         endTurnButton.Show();
     }
 }