| 1234567891011121314151617181920212223242526272829 |
- namespace ETModel
- {
- public static partial class InnerOpcode
- {
- public const ushort M2M_TrasferUnitRequest = 1001;
- public const ushort M2M_TrasferUnitResponse = 1002;
- public const ushort M2A_Reload = 1003;
- public const ushort A2M_Reload = 1004;
- public const ushort G2G_LockRequest = 1005;
- public const ushort G2G_LockResponse = 1006;
- public const ushort G2G_LockReleaseRequest = 1007;
- public const ushort G2G_LockReleaseResponse = 1008;
- public const ushort ObjectAddRequest = 1009;
- public const ushort ObjectAddResponse = 1010;
- public const ushort ObjectLockRequest = 1011;
- public const ushort ObjectLockResponse = 1012;
- public const ushort ObjectUnLockRequest = 1013;
- public const ushort ObjectUnLockResponse = 1014;
- public const ushort ObjectRemoveRequest = 1015;
- public const ushort ObjectRemoveResponse = 1016;
- public const ushort ObjectGetRequest = 1017;
- public const ushort ObjectGetResponse = 1018;
- public const ushort R2G_GetLoginKey = 1019;
- public const ushort G2R_GetLoginKey = 1020;
- public const ushort G2M_CreateUnit = 1021;
- public const ushort M2G_CreateUnit = 1022;
- public const ushort G2M_SessionDisconnect = 1023;
- }
- }
|