Exemplo n.º 1
0
 public static void Dispatch <T>(T data) where T : BaseEventData
 {
     GenericEvent <T> .Dispatch(data);
 }
Exemplo n.º 2
0
 public static void RemoveListener <T>(GenericEvent <T> .Callback callback) where T : BaseEventData
 {
     GenericEvent <T> .OnDispatch -= callback;
 }