InnerOpcode.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using ETModel;
  2. using System.Collections.Generic;
  3. using MongoDB.Bson.Serialization.Attributes;
  4. namespace ETHotfix
  5. {
  6. public static partial class InnerOpcode
  7. {
  8. public const ushort M2M_TrasferUnitRequest = 1001;
  9. public const ushort M2M_TrasferUnitResponse = 1002;
  10. public const ushort M2A_Reload = 1003;
  11. public const ushort A2M_Reload = 1004;
  12. public const ushort G2G_LockRequest = 1005;
  13. public const ushort G2G_LockResponse = 1006;
  14. public const ushort G2G_LockReleaseRequest = 1007;
  15. public const ushort G2G_LockReleaseResponse = 1008;
  16. public const ushort DBSaveRequest = 1009;
  17. public const ushort DBSaveBatchResponse = 1010;
  18. public const ushort DBSaveBatchRequest = 1011;
  19. public const ushort DBSaveResponse = 1012;
  20. public const ushort DBQueryRequest = 1013;
  21. public const ushort DBQueryResponse = 1014;
  22. public const ushort DBQueryBatchRequest = 1015;
  23. public const ushort DBQueryBatchResponse = 1016;
  24. public const ushort DBQueryJsonRequest = 1017;
  25. public const ushort DBQueryJsonResponse = 1018;
  26. public const ushort ObjectAddRequest = 1019;
  27. public const ushort ObjectAddResponse = 1020;
  28. public const ushort ObjectRemoveRequest = 1021;
  29. public const ushort ObjectRemoveResponse = 1022;
  30. public const ushort ObjectLockRequest = 1023;
  31. public const ushort ObjectLockResponse = 1024;
  32. public const ushort ObjectUnLockRequest = 1025;
  33. public const ushort ObjectUnLockResponse = 1026;
  34. public const ushort ObjectGetRequest = 1027;
  35. public const ushort ObjectGetResponse = 1028;
  36. public const ushort R2G_GetLoginKey = 1029;
  37. public const ushort G2R_GetLoginKey = 1030;
  38. public const ushort G2M_CreateUnit = 1031;
  39. public const ushort M2G_CreateUnit = 1032;
  40. public const ushort G2M_SessionDisconnect = 1033;
  41. }
  42. }