From 55468b51d25a353a3e9c049fdcd40468139ae2dd Mon Sep 17 00:00:00 2001 From: grimm <1769111741@qq.com> Date: Fri, 2 Feb 2024 16:33:21 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AB=9E=E6=8A=80=E5=9C=BA=E5=8D=8F=E8=AE=AE?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=89=E7=89=88=EF=BC=8C=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E9=87=8D=E7=BD=AE=E5=BC=B9=E7=AA=97=E5=92=8C=E6=AE=B5=E4=BD=8D?= =?UTF-8?q?=E5=8D=87=E7=BA=A7=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/ArenaInfoProto.proto | 9 +++++++++ protos/MessageTypeProto.proto | 2 ++ 2 files changed, 11 insertions(+) diff --git a/protos/ArenaInfoProto.proto b/protos/ArenaInfoProto.proto index 74fae4d..66def92 100644 --- a/protos/ArenaInfoProto.proto +++ b/protos/ArenaInfoProto.proto @@ -297,4 +297,13 @@ import "CommonProto.proto"; // 新竞技场第一名拍脸推送 message NewArenaFirstIndication{ repeated ArenaPersonInfo player = 1; + } + + // 新竞技场首次重置请求 + message NewArenaResetRequest{ + } + message NewArenaResetResponse{ + optional int32 isFirst = 1;//是否首次弹窗 + optional int32 arenLvId = 2;//段位id + optional Drop drop = 3;//段位升级奖励 } \ No newline at end of file diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 24ba591..e5b072c 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1690,6 +1690,8 @@ enum MessageType{ NewArenaChallengeRequest = 6000041; NewArenaChallengeResponse = 6000042; NewArenaFirstIndication = 6000043; + NewArenaResetRequest = 6000044; + NewArenaResetResponse = 6000045; }