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; }