using System; using System.Collections.Generic; namespace ET { /// /// Actor消息分发组件 /// public class ActorMessageDispatcherComponent: Entity { public static ActorMessageDispatcherComponent Instance; public readonly Dictionary ActorMessageHandlers = new Dictionary(); } }