master_huanxiang
gaojie 2019-01-24 17:20:49 +08:00
commit 19656cd516
2 changed files with 18 additions and 0 deletions

View File

@ -99,3 +99,10 @@ option optimize_for = SPEED;
message GMCommand{
optional string command =1 ; // type#prarm1#param2
}
message AdventureStateInfo{
optional int32 positionId = 1; //
repeated string heroIdList =2 ; // id
optional int32 startTime =3; //
optional int32 hourDuration =4; //
}

View File

@ -0,0 +1,11 @@
package com.ljsd.jieling.protocols;
option optimize_for = SPEED;
import "CommonProto.proto";
// request response
message GetAdventureStateInfoResponse{
repeated AdventureStateInfo adventureStateInfoList = 1;
}