StateSyncInner_S_20001.proto 494 B

123456789101112131415161718192021222324252627282930313233
  1. syntax = "proto3";
  2. package ET;
  3. // ResponseType A2M_Reload
  4. message M2A_Reload // IRequest
  5. {
  6. int32 RpcId = 1;
  7. }
  8. message A2M_Reload // IResponse
  9. {
  10. int32 RpcId = 1;
  11. int32 Error = 2;
  12. string Message = 3;
  13. }
  14. // ResponseType M2M_UnitTransferResponse
  15. message M2M_UnitTransferRequest // IRequest
  16. {
  17. int32 RpcId = 1;
  18. ActorId OldActorId = 2;
  19. bytes Unit = 3;
  20. repeated bytes Entitys = 4;
  21. }
  22. message M2M_UnitTransferResponse // IResponse
  23. {
  24. int32 RpcId = 1;
  25. int32 Error = 2;
  26. string Message = 3;
  27. }