| 1234567891011121314151617181920212223242526272829303132333435 |
- syntax = "proto3";
- package ET;
- // 请求匹配
- //ResponseType Match2G_Match
- message G2Match_Match // IActorRequest
- {
- int32 RpcId = 1;
-
- int64 Id = 2;
- }
- message Match2G_Match // IActorResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- //ResponseType Map2Match_GetRoom
- message Match2Map_GetRoom // IActorRequest
- {
- int32 RpcId = 1;
- repeated int64 PlayerIds = 2;
- }
- message Map2Match_GetRoom // IActorResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
-
- // 房间的instanceId
- int64 InstanceId = 4;
- }
|