Exemplo n.º 1
0
 public TimerUpdateData(EiUpdateInterface comp, float time, Action method)
 {
     this.comp   = comp;
     this.time   = time;
     timer       = time;
     this.method = method;
 }
Exemplo n.º 2
0
 public EiLLNode <EiUpdateInterface> Subscribe(EiUpdateInterface component)
 {
     return(threads.First().Subscribe(component));
 }
Exemplo n.º 3
0
 public EiLLNode <EiUpdateInterface> Subscribe(EiUpdateInterface component)
 {
     return(components.Add(component));
 }
Exemplo n.º 4
0
 public EiLLNode <EiUpdateInterface> SubscribeFixedUpdate(EiUpdateInterface component)
 {
     return(fixedUpdateList.Add(component));
 }
Exemplo n.º 5
0
 public EiLLNode <TimerUpdateData> SubscribeUpdateTimer(EiUpdateInterface component, float repeatTime, Action method)
 {
     return(timerUpdateList.Add(new TimerUpdateData(component, repeatTime, method)));
 }