| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- syntax = "proto3";
- package ET;
- // ResponseType A2M_Reload
- message M2A_Reload // IRequest
- {
- int32 RpcId = 1;
- }
- message A2M_Reload // IResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- // ResponseType G2R_GetLoginKey
- message R2G_GetLoginKey // IRequest
- {
- int32 RpcId = 1;
- string Account = 2;
- }
- message G2R_GetLoginKey // IResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- int64 Key = 4;
- int64 GateId = 5;
- }
- message G2M_SessionDisconnect // ILocationMessage
- {
- int32 RpcId = 1;
- }
- // ResponseType M2M_UnitTransferResponse
- message M2M_UnitTransferRequest // IRequest
- {
- int32 RpcId = 1;
- ActorId OldActorId = 2;
- bytes Unit = 3;
- repeated bytes Entitys = 4;
- }
- message M2M_UnitTransferResponse // IResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
|