InnerOpcode.cs 1.2 KB

1234567891011121314151617181920212223242526272829
  1. namespace ET
  2. {
  3. public static partial class InnerOpcode
  4. {
  5. public const ushort ObjectQueryRequest = 20002;
  6. public const ushort M2M_TrasferUnitResponse = 20003;
  7. public const ushort M2A_Reload = 20004;
  8. public const ushort A2M_Reload = 20005;
  9. public const ushort G2G_LockRequest = 20006;
  10. public const ushort G2G_LockResponse = 20007;
  11. public const ushort G2G_LockReleaseRequest = 20008;
  12. public const ushort G2G_LockReleaseResponse = 20009;
  13. public const ushort ObjectAddRequest = 20010;
  14. public const ushort ObjectAddResponse = 20011;
  15. public const ushort ObjectLockRequest = 20012;
  16. public const ushort ObjectLockResponse = 20013;
  17. public const ushort ObjectUnLockRequest = 20014;
  18. public const ushort ObjectUnLockResponse = 20015;
  19. public const ushort ObjectRemoveRequest = 20016;
  20. public const ushort ObjectRemoveResponse = 20017;
  21. public const ushort ObjectGetRequest = 20018;
  22. public const ushort ObjectGetResponse = 20019;
  23. public const ushort R2G_GetLoginKey = 20020;
  24. public const ushort G2R_GetLoginKey = 20021;
  25. public const ushort G2M_CreateUnit = 20022;
  26. public const ushort M2G_CreateUnit = 20023;
  27. public const ushort G2M_SessionDisconnect = 20024;
  28. }
  29. }