From 853bfa93f117ed9d19df797c2077fd7e8b808004 Mon Sep 17 00:00:00 2001 From: wangyuan Date: Sun, 26 Apr 2020 13:58:43 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E6=8C=87=E5=AE=9A=E6=B4=BB?= =?UTF-8?q?=E5=8A=A8=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MessageTypeProto.proto | 4 ++++ protos/PlayerInfoProto.proto | 8 ++++++++ 2 files changed, 12 insertions(+) diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 9c07d78..8451a71 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -435,6 +435,10 @@ enum MessageType{ GET_ONE_RANK_RESPONSE = 16663; + GET_SOME_ACTIVITY_INFO_REQUEST = 16664; // 获取某些活动信息 + GET_SOME_ACTIVITY_INFO_RESPONSE = 16665; + + // H 10700 HERO_RAND_REQQUEST = 10701; HERO_RAND_RESPONSE = 10702; diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index feb7818..24c4daa 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -711,6 +711,14 @@ import "CommonProto.proto"; optional FightData fightData = 2; } + message GetSomeActivityInfoRequest{ + repeated int32 id=1; + } + + message GetSomeActitityInfoRespone{ + repeated ActivityInfo activityInfo =1; + } +