InnerOpcode.cs 1.2 KB

1234567891011121314151617181920212223242526272829
  1. namespace ET
  2. {
  3. public static partial class InnerOpcode
  4. {
  5. public const ushort M2M_TrasferUnitRequest = 10001;
  6. public const ushort M2M_TrasferUnitResponse = 10002;
  7. public const ushort M2A_Reload = 10003;
  8. public const ushort A2M_Reload = 10004;
  9. public const ushort G2G_LockRequest = 10005;
  10. public const ushort G2G_LockResponse = 10006;
  11. public const ushort G2G_LockReleaseRequest = 10007;
  12. public const ushort G2G_LockReleaseResponse = 10008;
  13. public const ushort ObjectAddRequest = 10009;
  14. public const ushort ObjectAddResponse = 10010;
  15. public const ushort ObjectLockRequest = 10011;
  16. public const ushort ObjectLockResponse = 10012;
  17. public const ushort ObjectUnLockRequest = 10013;
  18. public const ushort ObjectUnLockResponse = 10014;
  19. public const ushort ObjectRemoveRequest = 10015;
  20. public const ushort ObjectRemoveResponse = 10016;
  21. public const ushort ObjectGetRequest = 10017;
  22. public const ushort ObjectGetResponse = 10018;
  23. public const ushort R2G_GetLoginKey = 10019;
  24. public const ushort G2R_GetLoginKey = 10020;
  25. public const ushort G2M_CreateUnit = 10021;
  26. public const ushort M2G_CreateUnit = 10022;
  27. public const ushort G2M_SessionDisconnect = 10023;
  28. }
  29. }