1
This commit is contained in:
parent
507249788b
commit
55b109eead
@ -907,6 +907,23 @@ message MFMatchInfo
|
|||||||
optional int32 predict_time = 4; //预计时间(单位秒)
|
optional int32 predict_time = 4; //预计时间(单位秒)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//结算奖励项
|
||||||
|
message MFOverRewardItem
|
||||||
|
{
|
||||||
|
optional int32 obtain_gold = 1; //实际获得金币数
|
||||||
|
optional int32 gold_limit = 2; //今天可获得的金币上限
|
||||||
|
}
|
||||||
|
|
||||||
|
//结算奖励
|
||||||
|
message MFOverReward
|
||||||
|
{
|
||||||
|
optional MFOverRewardItem hero = 1; //英雄
|
||||||
|
optional MFOverRewardItem weapon1 = 2; //武器1
|
||||||
|
optional MFOverRewardItem weapon2 = 3; //武器2
|
||||||
|
optional int32 bounds = 4;
|
||||||
|
optional int32 total = 5; //总数
|
||||||
|
}
|
||||||
|
|
||||||
//end mfmsg
|
//end mfmsg
|
||||||
|
|
||||||
//加入
|
//加入
|
||||||
@ -1271,6 +1288,8 @@ message SMGameOver
|
|||||||
optional string room_uuid = 7; //房间唯一id
|
optional string room_uuid = 7; //房间唯一id
|
||||||
repeated MFTeamData team_data = 10; //队伍数据
|
repeated MFTeamData team_data = 10; //队伍数据
|
||||||
repeated MFTuple spoils_items = 11; //战利品 0: 道具id 1:道具数量
|
repeated MFTuple spoils_items = 11; //战利品 0: 道具id 1:道具数量
|
||||||
|
|
||||||
|
optional MFOverReward reward = 14; //结算奖励
|
||||||
}
|
}
|
||||||
|
|
||||||
//离开
|
//离开
|
||||||
|
@ -706,6 +706,21 @@ message MFMatchInfo
|
|||||||
optional int32 predict_time = 4;
|
optional int32 predict_time = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message MFOverRewardItem
|
||||||
|
{
|
||||||
|
optional int32 obtain_gold = 1;
|
||||||
|
optional int32 gold_limit = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message MFOverReward
|
||||||
|
{
|
||||||
|
optional MFOverRewardItem hero = 1;
|
||||||
|
optional MFOverRewardItem weapon1 = 2;
|
||||||
|
optional MFOverRewardItem weapon2 = 3;
|
||||||
|
optional int32 bounds = 4;
|
||||||
|
optional int32 total = 5;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
message CMJoin
|
message CMJoin
|
||||||
{
|
{
|
||||||
@ -1025,6 +1040,8 @@ message SMGameOver
|
|||||||
optional string room_uuid = 7;
|
optional string room_uuid = 7;
|
||||||
repeated MFTeamData team_data = 10;
|
repeated MFTeamData team_data = 10;
|
||||||
repeated MFTuple spoils_items = 11;
|
repeated MFTuple spoils_items = 11;
|
||||||
|
|
||||||
|
optional MFOverReward reward = 14;
|
||||||
}
|
}
|
||||||
|
|
||||||
message SMLeave
|
message SMLeave
|
||||||
|
Loading…
x
Reference in New Issue
Block a user