示例#1
0
 protected void RegisterEventType(string type, Func <JObject> initCallback)
 {
     EventDispatcher.RegisterEventType(type, initCallback);
 }
示例#2
0
 protected void RegisterCachedEventType(string type)
 {
     eventCache[type] = null;
     EventDispatcher.RegisterEventType(type, () => eventCache[type]);
 }
示例#3
0
 protected void RegisterEventType(string type)
 {
     EventDispatcher.RegisterEventType(type);
 }