Esempio n. 1
0
 public void RegAnyEvent(string key, EventManager.AnyCallEvent callEvent)
 {
     EventManager.EventGather gather = new EventManager.EventGather();
     gather.mAnyEvents = callEvent;
     mEvents.Add(key, gather);
     EventManager.instance.Add(key, callEvent);
 }
Esempio n. 2
0
 public void RegEvent(string key, EventManager.AnyCallEvent callEvent)
 {
     mEventStorage.RegAnyEvent(key, callEvent);
 }