StateSyncInner_S_20001.proto 814 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 G2R_GetLoginKey
  15. message R2G_GetLoginKey // IRequest
  16. {
  17. int32 RpcId = 1;
  18. string Account = 2;
  19. }
  20. message G2R_GetLoginKey // IResponse
  21. {
  22. int32 RpcId = 1;
  23. int32 Error = 2;
  24. string Message = 3;
  25. int64 Key = 4;
  26. int64 GateId = 5;
  27. }
  28. message G2M_SessionDisconnect // ILocationMessage
  29. {
  30. int32 RpcId = 1;
  31. }
  32. // ResponseType M2M_UnitTransferResponse
  33. message M2M_UnitTransferRequest // IRequest
  34. {
  35. int32 RpcId = 1;
  36. ActorId OldActorId = 2;
  37. bytes Unit = 3;
  38. repeated bytes Entitys = 4;
  39. }
  40. message M2M_UnitTransferResponse // IResponse
  41. {
  42. int32 RpcId = 1;
  43. int32 Error = 2;
  44. string Message = 3;
  45. }