Exemplo n.º 1
0
        public void DeregisterSkillHandler(Plugin plugin, EventType type)
        {
            if (!handlerList.ContainsKey(type))
            {
                return;
            }

            EventHandlerList handlers = handlerList[type];

            handlers.Deregister(plugin);
        }