From 42d9d23ec7386e2e331e44384cd46b2cefe35fd1 Mon Sep 17 00:00:00 2001 From: lvxinran Date: Tue, 20 Aug 2019 07:06:05 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E6=AC=A110=E8=BF=9E=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/Family.proto | 14 ++++++++++++++ protos/PlayerInfoProto.proto | 1 + 2 files changed, 15 insertions(+) diff --git a/protos/Family.proto b/protos/Family.proto index a375f8f..a8544d0 100644 --- a/protos/Family.proto +++ b/protos/Family.proto @@ -256,4 +256,18 @@ import "CommonProto.proto"; optional int32 result = 1; optional int32 starCount = 2; } + message PersonalFightResult{ + optional int32 rank = 1; + optional int32 uid = 2; + optional string name = 3; + optional int32 head = 4; + optional int32 headFrame = 5; + optional int32 position = 6; + optional int32 attackCount = 7; + optional int32 starCount = 8; + } + //公会战个人战绩 + message PersonalFightResultResponse{ + repeated PersonalFightResult result = 1; + } diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index ba441bc..0ae9fdf 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -54,6 +54,7 @@ import "CommonProto.proto"; optional int32 treasureScore = 15; // 孙龙的宝藏分数 optional int32 hadBuyTreasure = 16; // 是否购买孙龙的宝藏 optional SignInInfo SignInInfo =17;//签到 + optional int32 firstTenth = 18;//首次十连是否用过 }