diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 2673d63..7bff86e 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -500,6 +500,9 @@ enum MessageType{ TAKE_TOWER_REWARD_REQUEST = 11910;//领取层级奖励 TAKE_TOWER_REWARD_RESPONSE = 11911; + + TAKE_SEVEN_HAPPY_REWARD_REQUEST = 11912;// 领取七日狂欢积分奖励 + TAKE_SEVEN_HAPPY_REWARD_RESPONSE = 11913; // U 12000 UP_HERO_LEVEL_REQUEST = 12000; // 升级或突破 diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index 130ae8b..d07ad8a 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -462,5 +462,9 @@ import "CommonProto.proto"; optional int32 totalForce=7; repeated int32 PokemonInfos = 8; } + + message TakeSenvenScoreRewardResponse{ + optional Drop drop =1; + }