Exemple #1
0
 public Handler(InstantEventDelegate inInstant)
 {
     Instant              = inInstant;
     InstantWithContext   = null;
     Coroutine            = null;
     CoroutineWithContext = null;
 }
Exemple #2
0
 public Handler(CoroutineEventWithContextDelegate inCoroutineWithContext)
 {
     Instant              = null;
     InstantWithContext   = null;
     Coroutine            = null;
     CoroutineWithContext = inCoroutineWithContext;
 }
Exemple #3
0
 /// <summary>
 /// Registers a coroutine event handler.
 /// </summary>
 public TagStringEventHandler Register(StringHash32 inId, CoroutineEventDelegate inCoroutine)
 {
     m_Handlers[inId] = new Handler(inCoroutine);
     return(this);
 }