master_huanxiang
zhangshanxue 2019-08-30 16:48:43 +08:00
commit c9e4153dfd
3 changed files with 14 additions and 0 deletions

View File

@ -603,4 +603,9 @@ option optimize_for = SPEED;
message EndlessPoint{
optional int32 location = 1;
optional int32 monsterId = 2;
}
//
message StrongerInfo{
optional int32 curScore = 1;
optional int32 maxScore = 2;
}

View File

@ -571,6 +571,9 @@ enum MessageType{
TAKE_SEVEN_HAPPY_REWARD_REQUEST = 11912;//
TAKE_SEVEN_HAPPY_REWARD_RESPONSE = 11913;
TO_BE_STRONGER_REQUEST = 11914;//
TO_BE_STRONGER_RESPONSE = 11915;
// U 12000
UP_HERO_LEVEL_REQUEST = 12000; //

View File

@ -508,3 +508,9 @@ import "CommonProto.proto";
message GetPhoneRewardResponse{
optional Drop drop =1 ;
}
message GetToBeStrongerRequest{
optional int32 tempId = 1;
}
message GetToBeStrongerResponse{
repeated StrongerInfo infos = 1;
}