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