| 123456789101112131415161718192021 |
- syntax = "proto3";
- package ET;
- message ObjectQueryResponse // IActorResponse
- {
- int32 RpcId = 90;
- int32 Error = 91;
- string Message = 92;
- Entity entity = 1;
- }
- //ResponseType M2M_UnitTransferResponse
- message M2M_UnitTransferRequest // IActorRequest
- {
- int32 RpcId = 1;
- Unit Unit = 2;
- repeated Entity Entitys = 3;
- }
|