MessageDispatcherComponent.cs 281 B

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