28 lines
615 B
Protocol Buffer
28 lines
615 B
Protocol Buffer
package com.ljsd.jieling.protocols;
|
|
|
|
option optimize_for = SPEED;
|
|
|
|
import "CommonProto.proto";
|
|
|
|
// request 编号需要小于 response 编号
|
|
|
|
message GetAdventureStateInfoResponse{
|
|
repeated AdventureStateInfo adventureStateInfoList = 1;
|
|
}
|
|
|
|
// 冒险驻扎
|
|
message AventureStationRequest{
|
|
optional int32 position = 1; // 驻扎区域编号
|
|
optional int32 hourDuration =2 ; //驻扎时长
|
|
repeated string heroIdList =3; // 上阵英雄id
|
|
}
|
|
|
|
message TakeAventureRewardRequest{
|
|
optional int32 position = 1; // 驻扎区域编号
|
|
}
|
|
|
|
message TakeAventureRewardResponse{
|
|
optional Drop Drop = 1;
|
|
}
|
|
|