我要变强协议

lvxinran 2019-09-01 16:13:59 +08:00
parent 74f5090f76
commit 23fa28b119
3 changed files with 14 additions and 0 deletions

View File

@ -601,4 +601,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;
}