protected void RegisterEventType(string type, Func <JObject> initCallback) { EventDispatcher.RegisterEventType(type, initCallback); }
protected void RegisterCachedEventType(string type) { eventCache[type] = null; EventDispatcher.RegisterEventType(type, () => eventCache[type]); }
protected void RegisterEventType(string type) { EventDispatcher.RegisterEventType(type); }