From 4d0dd49782cfea3114592800e9e2e60c31d5b5d3 Mon Sep 17 00:00:00 2001 From: lvxinran Date: Fri, 14 May 2021 16:06:32 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E6=97=A0=E5=B0=BD=E7=BC=96?= =?UTF-8?q?=E9=98=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/HeroInfoProto.proto | 9 +++++++++ protos/MessageTypeProto.proto | 3 +++ 2 files changed, 12 insertions(+) diff --git a/protos/HeroInfoProto.proto b/protos/HeroInfoProto.proto index ec947fa..01ad3f7 100644 --- a/protos/HeroInfoProto.proto +++ b/protos/HeroInfoProto.proto @@ -13,6 +13,15 @@ import "CommonProto.proto"; repeated Hero heroList = 1; optional bool isSendFinish =2; //是否发送完成 } + //获取无尽副本可使用英雄 + message GetEndlessHeroListInfoRequest{ + optional int32 index = 1; //第一次请求索引为0, 第二次:第一次索引+每页的数量 + } + + message GetEndlessHeroListInfoResponse{ + repeated Hero heroList = 1; + optional bool isSendFinish =2; //是否发送完成 + } message DrawHeroRequest{ optional int32 type = 1; diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 5db1101..7daad4e 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -510,6 +510,9 @@ enum MessageType{ GET_ALL_PROPERTY_INFO_REQUEST = 16689;//获取图鉴 GET_ALL_PROPERTY_INFO_RESPONSE = 16690; + + GET_ENDLESS_HERO_LIST_INFO_REQUEST = 16691;//获取无尽副本可以使用的英雄 + GET_ENDLESS_HERO_LIST_INFO_RESPONSE = 16692; // H 10700 HERO_RAND_REQQUEST = 10701;