diff --git a/protos/FightInfoProto.proto b/protos/FightInfoProto.proto index a019b71..5712464 100644 --- a/protos/FightInfoProto.proto +++ b/protos/FightInfoProto.proto @@ -4,8 +4,6 @@ option optimize_for = SPEED; import "CommonProto.proto"; -import "PlayerInfoProto.proto"; - // request 编号需要小于 response 编号 // 战斗开始 @@ -32,6 +30,13 @@ import "PlayerInfoProto.proto"; optional int32 type = 4; // 类型 1: 关卡 2:地图 3:精英怪 4:爬塔副本 5:妖兽 6: 新关卡 optional int32 dropout = 5 ;// 是否退出 1 :退出 } + + message UpdateUserExpIndicaiton{ + optional int32 level = 1 ;// 玩家等级 + optional int32 exp =2 ; // 玩家经验 + } + + message FightEndResponse { //战斗结果 optional int32 result = 1; @@ -192,9 +197,5 @@ import "PlayerInfoProto.proto"; optional AdventureBossSimpleInfo adventureBossInfo =1; // 召唤bosss信息 } - message MainLevelTakeStateRewardResponse{ - optional Drop drop = 1 ;// 挂机奖励 - } -