Exemplo n.º 1
0
 public void Schedule(float duration, Timer.OnTimerUp callback = null, object data = null)
 {
     m_timers.Add(new Timer(duration, data, callback));
 }
Exemplo n.º 2
0
 public void Add(Timer timer)
 {
     m_timers.Add(timer);
 }