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;