using System.Collections.Generic; namespace ET { /// /// 消息分发组件 /// public class MessageDispatcherComponent: Entity { public static MessageDispatcherComponent Instance { get; set; } public readonly Dictionary> Handlers = new Dictionary>(); } }