示例#1
0
 public void HideEndTurnButton()
 {
     if (ActivePlayer.GetType() == typeof(Player))
     {
         endTurnButton.Hide();
     }
 }
示例#2
0
 public void ShowEndTurnButton()
 {
     if (ActivePlayer.GetType() == typeof(Player))
     {
         endTurnButton.Show();
     }
 }