diff --git a/protos/Family.proto b/protos/Family.proto index 104d2ce..23808a0 100644 --- a/protos/Family.proto +++ b/protos/Family.proto @@ -231,4 +231,20 @@ import "CommonProto.proto"; message FamilyFightInfoResponse{ repeated FamilyFightInfo info=1; } - + //敌方公会信息 + message EnemyFamily{ + optional int32 id = 1; + optional string name = 2; + optional int32 level = 3; + optional int32 pictureId = 4; + } + //公会战阶段信息 + message FamilyFightRoundResponse{ + optional int32 type = 1; + optional int32 startTime = 2; + optional int32 roundStartTime = 3; + optional int32 roundEndTime =4; + optional int32 joinType = 5;//所在公会是否进入本次公会战 + optional EnemyFamily enemy =6;//敌方公会信息 + } + diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 934c7c2..bcadfe7 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -249,6 +249,9 @@ enum MessageType{ FAMILY_FIGHT_INFO_REQUEST = 10567;//公会对战具体信息 FAMILY_FIGHT_INFO_RESPONSE = 10568; + + FAMILY_FIGHT_ROUND_INFO_REQUEST = 10569;//公会战阶段信息 + FAMILY_FIGHT_ROUND_INFO_RESPONSE = 10570; // G 10600 GET_PLAYERINFO_REQUEST = 10600; //