LockStepInner_S_21001.proto 658 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. int64 InstanceId = 3;
  10. }
  11. message Match2G_Match // IActorResponse
  12. {
  13. int32 RpcId = 1;
  14. int32 Error = 2;
  15. string Message = 3;
  16. }
  17. //ResponseType Map2Match_GetRoom
  18. message Match2Map_GetRoom // IActorRequest
  19. {
  20. int32 RpcId = 1;
  21. }
  22. message Map2Match_GetRoom // IActorResponse
  23. {
  24. int32 RpcId = 1;
  25. int32 Error = 2;
  26. string Message = 3;
  27. // 房间的instanceId
  28. int64 InstanceId = 4;
  29. }
  30. message Match2G_NotifyMatchSuccess // IActorMessage
  31. {
  32. int32 RpcId = 1;
  33. // 房间的instanceId
  34. int64 InstanceId = 2;
  35. }