血战排行榜
parent
130d91a17b
commit
b86da952b4
|
@ -611,6 +611,7 @@ option optimize_for = SPEED;
|
|||
message EndlessInfo{
|
||||
optional int32 mapId = 1;
|
||||
optional int32 worldLevel = 2;
|
||||
optional int32 bloodScore = 3;
|
||||
}
|
||||
|
||||
message PlayerBindPhone{
|
||||
|
@ -633,5 +634,14 @@ option optimize_for = SPEED;
|
|||
optional int32 type = 2; //单选0 多选1 填空2
|
||||
repeated string options =3;//选项描述
|
||||
}
|
||||
//血战基本信息
|
||||
message BloodPersonInfo{
|
||||
optional int32 id = 1;
|
||||
optional string name = 2;
|
||||
optional int32 headFrame = 3;
|
||||
optional string head = 4;
|
||||
optional int32 serverId =5;
|
||||
optional int32 rank = 6;
|
||||
}
|
||||
|
||||
|
|
@ -105,6 +105,8 @@ enum MessageType{
|
|||
BUY_TREASURE_REQUEST = 10113; // 购买孙龙的宝藏
|
||||
BUY_TREASURE_RESPONSE = 10114;
|
||||
|
||||
BLOOD_RANK_REQUEST = 10115;//血战排行榜
|
||||
BLOOD_RANK_RESPONSE = 10116;
|
||||
|
||||
// C 10200
|
||||
COOK_FOOD_REQUEST = 10200; // 制作美食
|
||||
|
|
|
@ -533,4 +533,7 @@ import "CommonProto.proto";
|
|||
|
||||
message upDataQuestionResponse{
|
||||
optional int32 result = 1;//-1失败 0成功
|
||||
}
|
||||
}
|
||||
|
||||
message BloodRank{
|
||||
}
|
|
@ -62,5 +62,9 @@ import "CommonProto.proto";
|
|||
message RoomGetFullInfoResponse{
|
||||
optional RoomMatchSuccessIndication roomMatchSuccessIndication =1;
|
||||
}
|
||||
//血战排行榜
|
||||
message BloodRankResponse{
|
||||
repeated BloodPersonInfo infos = 1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue