This commit is contained in:
aozhiwei 2024-09-20 11:43:02 +08:00
parent e6466d50f9
commit c6193243ab
2 changed files with 16 additions and 0 deletions

View File

@ -46,4 +46,5 @@ enum SMMessageId_e
_SMTeamStateNotify = 1002; _SMTeamStateNotify = 1002;
_SMTeamDisbandNotify = 1003; _SMTeamDisbandNotify = 1003;
_SMTeamKickoutNotify = 1004; _SMTeamKickoutNotify = 1004;
_SMPushLastBattleInfo = 1005;
} }

View File

@ -151,6 +151,15 @@ message MFTeam
optional int32 mode_id = 5; //mapMode表.id optional int32 mode_id = 5; //mapMode表.id
} }
//
message MFLastBattleInfo
{
optional int32 map_id = 1; //id
optional int32 mode_id = 2; //mapMode表.id
optional int32 start_time = 3; //
optional int32 interval_time = 6; //<=0
}
// //
message CMLogin message CMLogin
{ {
@ -359,3 +368,9 @@ message SMTeamKickoutNotify
{ {
optional string account_id = 1; //id optional string account_id = 1; //id
} }
//
message SMPushLastBattleInfo
{
repeated MFLastBattleInfo battle_list = 1; //
}