This commit is contained in:
aozhiwei 2024-09-06 13:30:37 +08:00
parent 528318d3ce
commit 0b89e71303
2 changed files with 16 additions and 0 deletions

View File

@ -75,4 +75,6 @@ enum SMMessageId_e
_SMTeamFullNotify = 1032;
_SMTeamPartNotify = 1033;
_SMBattlePreInfoUpdate = 1034;
_SMAddBattleHint = 1035;
_SMDelBattleHint = 1036;
}

View File

@ -2130,4 +2130,18 @@ message SMTeamPartNotify
message SMBattlePreInfoUpdate
{
optional MFBattlePreInfo info = 1; //
}
//-
message SMAddBattleHint
{
optional int32 uniid = 1; //id
optional MFVec3 pos = 2; //
optional int32 duration = 3; //
}
//-
message SMDelBattleHint
{
optional int32 uniid = 1; //id
}