MongoMessage.proto 323 B

123456789101112131415161718192021
  1. syntax = "proto3";
  2. package ET;
  3. message ObjectQueryResponse // IActorResponse
  4. {
  5. int32 RpcId = 90;
  6. int32 Error = 91;
  7. string Message = 92;
  8. Entity entity = 1;
  9. }
  10. //ResponseType M2M_UnitTransferResponse
  11. message M2M_UnitTransferRequest // IActorRequest
  12. {
  13. int32 RpcId = 1;
  14. Unit Unit = 2;
  15. repeated Entity Entitys = 3;
  16. }