Ejemplo n.º 1
0
 private void Awake()
 {
     // Set up static instance.
     static_instance = this;
     Signals.Get <PerformVerbSignal>().AddListener(ReceivedVerb);
     Signals.Get <TimeOut>().AddListener(HandleTimeExpired);
     // Set up timer
     timer = new Timer(TimerStartValue, BonusTimePerStage, PenaltyPerError, DangerTimeKickinValue);
 }
Ejemplo n.º 2
0
 public State_LifeForm_Destroyed(LifeformManager owner)
 {
     this.owner = owner;
 }
Ejemplo n.º 3
0
 public State_LifeForm_Victory(LifeformManager owner)
 {
     this.owner = owner;
 }
Ejemplo n.º 4
0
 public State_LifeForm_Failed(LifeformManager owner)
 {
     this.owner = owner;
 }
Ejemplo n.º 5
0
 public State_LifeForm_Growing(LifeformManager owner)
 {
     this.owner = owner;
 }