Example #1
0
 public static void RegisterEvent(EVENT_TYPE eventType, EventController.EventDelegate handler)
 {
     Instance.EventController.RegisteEvent(eventType, handler);
 }
Example #2
0
 protected void RegisteEvent(EVENT_TYPE eventType, EventController.EventDelegate handle)
 {
     _HandleList.Add(eventType, handle);
     GameCore.Instance.EventController.RegisteEvent(eventType, handle);
 }