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; }