From 083f9dcd1304d9667df20d89bf7c72d9615edfd5 Mon Sep 17 00:00:00 2001 From: duhui Date: Mon, 11 Jul 2022 11:11:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=AF=94=E6=95=B0=E5=AD=97=E5=8D=8F=E8=AE=AE?= =?UTF-8?q?=E6=96=B0=E5=A2=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MessageTypeProto.proto | 3 +++ protos/PlayerInfoProto.proto | 9 +++++++++ 2 files changed, 12 insertions(+) diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 13676c7..73ecdc2 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1474,6 +1474,9 @@ enum MessageType{ COMPARENUM_INFO_REQUEST = 3050086; COMPARENUM_INFO_RESPONSE = 3050087; + GET_COMPARENUM_INFO_REQUEST = 3050088; + GET_COMPARENUM_INFO_RESPONSE = 3050089; + diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index d7e5496..93fcf3f 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -1254,4 +1254,13 @@ import "CommonProto.proto"; message CompareNumInfoResponse { optional int32 levelId = 1; // 当前关卡Id repeated CompareNumLevelInfo levelInfo = 2; + } + + message GetCompareNumInfoRequest { + } + + message GetCompareNumInfoResponse { + optional int32 levelId = 1; // 比数字小游戏当前关卡Id + optional int32 completeNum = 2; // 比数字小游戏当前章节通关数量 + repeated int32 rewardIdArr = 3; // 比数字小游戏存储已领取过的关卡累计奖励 (章节ID * 1000 + 累计关卡数) } \ No newline at end of file