Ejemplo n.º 1
0
 public void RemoveEnterEventBeforeEnter <C>(Action a) where C : StateNormal <C>, new()
 {
     processEnterEvent <C>(a, StateNormal <C> .GetEnterEvents(), ee => ee.RemoveEnterEvent);
 }
Ejemplo n.º 2
0
 public void AddEnterEventBeforeEnter <C>(Action a, MonoBehaviourHasDestroyEvent mb) where C : StateNormal <C>, new()
 {
     processEnterEvent <C>(a, StateNormal <C> .GetEnterEvents(), ee => ee.AddEnterEvent, mb);
 }