GMCommandComponent.cs 446 B

123456789101112131415161718
  1. using System.Collections.Generic;
  2. namespace ET.Client
  3. {
  4. /// <summary>
  5. /// 文档: https://lib9kmxvq7k.feishu.cn/wiki/NYADwMydliVmQ7kWXOuc0yxGn7p
  6. /// </summary>
  7. [ComponentOf(typeof (Scene))]
  8. public class GMCommandComponent: Entity, IAwake, IDestroy
  9. {
  10. public Dictionary<int, List<GMCommandInfo>> AllCommandInfo { get; set; }
  11. }
  12. //GM相关消息 关闭GMView
  13. public struct OnGMEventClose
  14. {
  15. }
  16. }