This commit is contained in:
aozhiwei 2023-12-27 11:10:40 +08:00
parent ea4314e60d
commit 8e405e0818
2 changed files with 25 additions and 0 deletions

View File

@ -70,4 +70,5 @@ enum SMMessageId_e
_SMSyncPosition = 1025;
_SMSyncTeamData = 1026;
_SMSyncKillList = 1027;
_SMSyncMobaTeam = 1028;
}

View File

@ -1370,6 +1370,24 @@ message MFKill
optional int32 obj_uniid = 1; //id
}
//moba队伍成员
message MFMobaTeamMember
{
optional string account_id = 1; //id account_id
optional string name = 2; //
optional string avatar_url = 3; //
optional int32 hero_id = 4; //id
repeated MFWeapon weapons = 5; //
optional bool is_leader = 8; //
optional int32 head_frame = 10; //
}
//moba队伍
message MFMobaTeam
{
optional string team_uuid = 1; //id
repeated MFMobaTeamMember members = 2; //
}
//end mfmsg
@ -1765,6 +1783,12 @@ message SMSyncKillList
repeated MFKill kill_list = 18; //
}
//moba队伍信息(, account_id判断自己所属那个队伍)
message SMSyncMobaTeam
{
repeated MFMobaTeam team_list = 1; //
}
//
message SMGameOver
{