MessageDispatcherComponent.cs 343 B

12345678910111213
  1. using System.Collections.Generic;
  2. namespace ETModel
  3. {
  4. /// <summary>
  5. /// 消息分发组件
  6. /// </summary>
  7. public class MessageDispatcherComponent : Entity
  8. {
  9. public static MessageDispatcherComponent Instace { get; set; }
  10. public readonly Dictionary<ushort, List<IMHandler>> Handlers = new Dictionary<ushort, List<IMHandler>>();
  11. }
  12. }