Exemplo n.º 1
0
 public Timer(MonoBehaviour mono, float duration)
 {
     this.m_CoroutineContainer = mono;
     this.m_Duration           = duration;
     this.m_Target             = new TimerProgressEvent();
     this.m_TimerEnd           = new TimerEndEvent();
 }
Exemplo n.º 2
0
 public void OnTimerEnd()
 {
     TimerEndEvent?.Invoke();
 }