From 40ce4b02c04831160e64cdbe62c340404bbce4da Mon Sep 17 00:00:00 2001 From: lvxinran Date: Sat, 31 Aug 2019 20:48:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0=E5=B0=BD=E5=89=AF=E6=9C=AC=E5=B0=8F?= =?UTF-8?q?=E5=9C=B0=E5=9B=BE=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 5 +++++ protos/MapInfoProto.proto | 5 +++++ protos/MessageTypeProto.proto | 3 +++ 3 files changed, 13 insertions(+) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index a0d68bf..25f0b9c 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -591,4 +591,9 @@ option optimize_for = SPEED; message EndlessInfo{ optional int32 mapId = 1; optional int32 worldLevel = 2; + } + //无尽副本小地图点信息 + message EndlessPoint{ + optional int32 location = 1; + optional int32 monsterId = 2; } \ No newline at end of file diff --git a/protos/MapInfoProto.proto b/protos/MapInfoProto.proto index fcde927..3125e0f 100644 --- a/protos/MapInfoProto.proto +++ b/protos/MapInfoProto.proto @@ -287,3 +287,8 @@ import "CommonProto.proto"; message EndlessTimeIndication{ repeated EndlessRefreshInfo infos = 1; } + //无尽副本小地图信息 + message EndlessMinMapResponse{ + optional int32 myXY = 1; + repeated EndlessPoint points = 2; + } diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index cd0cf21..7bea553 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -151,6 +151,9 @@ enum MessageType{ ENDLESS_REFRESH_INDICAITON = 10420;//无尽副本推送刷新时间 + ENDLESS_MIN_MAP_INFO_REQUEST = 10421;//无尽副本小地图信息 + ENDLESS_MIN_MAP_INFO_RESPONSE = 10422; + // F 10500 FIGHT_START_REQUEST = 10500; // FIGHT_START_RESPONSE = 10501;