From 052fc147dc0ff0343052d86cf7ba593eecf22a78 Mon Sep 17 00:00:00 2001 From: lvxinran Date: Tue, 30 Jul 2019 15:49:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0=E5=B0=BD=E5=89=AF=E6=9C=AC=E5=8D=8F?= =?UTF-8?q?=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 6 +++++- protos/MapInfoProto.proto | 5 ++++- protos/MessageTypeProto.proto | 3 +++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index adddecb..956cff5 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -480,4 +480,8 @@ option optimize_for = SPEED; optional int32 tower = 1;//试炼层数 optional int32 intoType = 2;//可进入标识 } - + //无尽副本英雄信息 + message endlessHero{ + optional string heroId = 1; + optional int hp = 2; + } diff --git a/protos/MapInfoProto.proto b/protos/MapInfoProto.proto index dc8942b..5b424e2 100644 --- a/protos/MapInfoProto.proto +++ b/protos/MapInfoProto.proto @@ -257,5 +257,8 @@ import "CommonProto.proto"; optional Drop drop = 1; } - + message GetEndlessHeroResponse{ + //英雄信息 + repeated endlessHero heroInfo =1; + } diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index f4253a1..cebba06 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -125,6 +125,9 @@ enum MessageType{ EQUIP_LOCK_REQUEST = 10408; //装备锁定 EQUIP_LOCK_RESPONSE = 10409; + + ENDLESS_MAP_HERO_INFO_REQUEST = 10410;//无尽副本英雄信息 + ENDLESS_MAP_HERO_INFO_RESPONSE = 10411; // F 10500 FIGHT_START_REQUEST = 10500; // FIGHT_START_RESPONSE = 10501;