血战排行榜

master_huanxiang
lvxinran 2019-09-05 11:38:03 +08:00
parent 130d91a17b
commit b86da952b4
4 changed files with 20 additions and 1 deletions

View File

@ -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;
}

View File

@ -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; //

View File

@ -533,4 +533,7 @@ import "CommonProto.proto";
message upDataQuestionResponse{
optional int32 result = 1;//-1 0
}
}
message BloodRank{
}

View File

@ -62,5 +62,9 @@ import "CommonProto.proto";
message RoomGetFullInfoResponse{
optional RoomMatchSuccessIndication roomMatchSuccessIndication =1;
}
//
message BloodRankResponse{
repeated BloodPersonInfo infos = 1;
}