LockStepInner_S_21001.proto 843 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. syntax = "proto3";
  2. package ET;
  3. // 请求匹配
  4. //ResponseType Match2G_Match
  5. message G2Match_Match // IActorRequest
  6. {
  7. int32 RpcId = 1;
  8. int64 Id = 2;
  9. }
  10. message Match2G_Match // IActorResponse
  11. {
  12. int32 RpcId = 1;
  13. int32 Error = 2;
  14. string Message = 3;
  15. }
  16. //ResponseType Map2Match_GetRoom
  17. message Match2Map_GetRoom // IActorRequest
  18. {
  19. int32 RpcId = 1;
  20. repeated int64 PlayerIds = 2;
  21. }
  22. message Map2Match_GetRoom // IActorResponse
  23. {
  24. int32 RpcId = 1;
  25. int32 Error = 2;
  26. string Message = 3;
  27. // 房间的ActorId
  28. ActorId ActorId = 4;
  29. }
  30. //ResponseType Room2G_Reconnect
  31. message G2Room_Reconnect // IActorRequest
  32. {
  33. int32 RpcId = 1;
  34. int64 PlayerId = 2;
  35. }
  36. message Room2G_Reconnect // IActorResponse
  37. {
  38. int32 RpcId = 1;
  39. int32 Error = 2;
  40. string Message = 3;
  41. int64 StartTime = 4;
  42. repeated LockStepUnitInfo UnitInfos = 5;
  43. int32 Frame = 6;
  44. }