Exemple #1
0
 public void ResetState()
 {
     lawState = LawStates.NotSign;
     sideWith = "";
     isChose  = false;
     EnableChooseButton();
     signBy.text = "";
 }
Exemple #2
0
 public void Veto()
 {
     if (!isChose && currentEvent != null)
     {
         lawState    = LawStates.Veto;
         sideWith    = currentEvent.Events.Veto;
         isChose     = true;
         signBy.text = "Vetoed by Donald Drumpf";
         DisableChooseButton();
     }
 }