From 23fa28b119149976d548bf225eb2b6a261e466aa Mon Sep 17 00:00:00 2001 From: lvxinran Date: Sun, 1 Sep 2019 16:13:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=91=E8=A6=81=E5=8F=98=E5=BC=BA=E5=8D=8F?= =?UTF-8?q?=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 5 +++++ protos/MessageTypeProto.proto | 3 +++ protos/PlayerInfoProto.proto | 6 ++++++ 3 files changed, 14 insertions(+) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index d868dd6..bdff820 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -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; } \ No newline at end of file diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index a5cddce..d3403a3 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -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; // 升级或突破 diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index 2a5b876..2513d6f 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -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; + }