| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- namespace Model
- {
- public static partial class Opcode
- {
- public const ushort ActorRequest = 1;
- public const ushort ActorResponse = 2;
- public const ushort ActorResponseWithM = 3;
- public const ushort G2G_LockRequest = 10;
- public const ushort G2G_LockResponse = 11;
- public const ushort G2G_LockReleaseRequest = 12;
- public const ushort G2G_LockReleaseResponse = 13;
- public const ushort M2A_Reload = 20;
- public const ushort A2M_Reload = 21;
- public const ushort DBSaveRequest = 26;
- public const ushort DBSaveResponse = 27;
- public const ushort DBQueryRequest = 28;
- public const ushort DBQueryResponse = 29;
- public const ushort DBSaveBatchResponse = 37;
- public const ushort DBSaveBatchRequest = 38;
- public const ushort DBQueryBatchRequest = 61;
- public const ushort DBQueryBatchResponse = 62;
- public const ushort DBQueryJsonRequest = 65;
- public const ushort DBQueryJsonResponse = 66;
- public const ushort ObjectAddRequest = 70;
- public const ushort ObjectAddResponse = 71;
- public const ushort ObjectRemoveRequest = 72;
- public const ushort ObjectRemoveResponse = 73;
- public const ushort ObjectLockRequest = 74;
- public const ushort ObjectLockResponse = 75;
- public const ushort ObjectUnLockRequest = 76;
- public const ushort ObjectUnLockResponse = 77;
- public const ushort ObjectGetRequest = 78;
- public const ushort ObjectGetResponse = 79;
- public const ushort R2G_GetLoginKey = 101;
- public const ushort G2R_GetLoginKey = 102;
- public const ushort G2M_CreateUnit = 103;
- public const ushort M2G_CreateUnit = 104;
- public const ushort M2M_TrasferUnitRequest = 105;
- public const ushort M2M_TrasferUnitResponse = 106;
- }
- }
|