From 58cd8a7fda1fea1a666b07a4533a90be5bb0099e Mon Sep 17 00:00:00 2001 From: lvxinran Date: Tue, 27 Aug 2019 17:41:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0=E5=B0=BD=E6=9C=AC=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 7 ++++++- protos/MapInfoProto.proto | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 1f581e5..aa11c0d 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -115,6 +115,7 @@ option optimize_for = SPEED; optional int32 cellId = 1; // mapPointConfig id optional int32 pointId = 2; + optional int32 monsterForce = 3; } @@ -510,7 +511,11 @@ option optimize_for = SPEED; optional string heroId = 1; //英雄Id optional int32 hp = 2;//英雄血量 } - + //无尽副本地图点刷新时间信息 + message EndlessRefreshInfo{ + optional int32 cellId = 1; + optional int32 time = 2; + } //战力排行 message UseForceInfo{ optional string name = 1; diff --git a/protos/MapInfoProto.proto b/protos/MapInfoProto.proto index 11002bc..b2da8d9 100644 --- a/protos/MapInfoProto.proto +++ b/protos/MapInfoProto.proto @@ -56,6 +56,8 @@ import "CommonProto.proto"; repeated TowerBuff buf = 12; // 无尽副本标志信息 repeated endlessSign signs = 13; + // 无尽副本地图点刷新信息 + repeated EndlessRefreshInfo refreshInfo = 14; }