示例#1
0
 public Handler(InstantEventDelegate inInstant)
 {
     Instant              = inInstant;
     InstantWithContext   = null;
     Coroutine            = null;
     CoroutineWithContext = null;
 }
示例#2
0
 public Handler(CoroutineEventWithContextDelegate inCoroutineWithContext)
 {
     Instant              = null;
     InstantWithContext   = null;
     Coroutine            = null;
     CoroutineWithContext = inCoroutineWithContext;
 }
示例#3
0
 /// <summary>
 /// Registers an instant event handler with context arguments.
 /// </summary>
 public TagStringEventHandler Register(StringHash32 inId, InstantEventWithContextDelegate inInstantWithContext)
 {
     m_Handlers[inId] = new Handler(inInstantWithContext);
     return(this);
 }