GMCommandInfo.cs 598 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. namespace ET.Client
  4. {
  5. //GM实例信息
  6. [EnableClass]
  7. public class GMCommandInfo
  8. {
  9. public int GMType; //命令类型
  10. public string GMTypeName; //命令名称
  11. public int GMLevel; //命令等级
  12. public string GMName; //命令名称
  13. public string GMDesc; //命令描述
  14. public List<GMParamInfo> ParamInfoList; //泛型参数类型
  15. public IGMCommand Command; //实例
  16. }
  17. }