This commit is contained in:
aozhiwei 2024-03-20 17:08:56 +08:00
parent fb60ecd301
commit 293b705005
2 changed files with 7 additions and 0 deletions

View File

@ -19,6 +19,7 @@ namespace cs
class MFSandTablePartMsg; class MFSandTablePartMsg;
class MFMobaBattleDataMember; class MFMobaBattleDataMember;
class MFTeamPart; class MFTeamPart;
class MFTeamMemberNew;
class SMGameOver; class SMGameOver;
class SMUpdate; class SMUpdate;
} }
@ -166,6 +167,7 @@ class Human : public Creature
void FillMFTeamData(Human* hum, cs::MFTeamData* team_data, bool is_game_over); void FillMFTeamData(Human* hum, cs::MFTeamData* team_data, bool is_game_over);
void FillMFMobaBattleDataMember(cs::MFMobaBattleDataMember* p); void FillMFMobaBattleDataMember(cs::MFMobaBattleDataMember* p);
void FillMFTeamPart(cs::MFTeamPart* p); void FillMFTeamPart(cs::MFTeamPart* p);
void FillMFTeamMemberNew(cs::MFTeamMemberNew* p);
void CarShot(const glm::vec3& target_dir); void CarShot(const glm::vec3& target_dir);
void BeKill(int killer_id, const std::string& killer_name, int weapon_id, void BeKill(int killer_id, const std::string& killer_name, int weapon_id,
int real_killer_id, const std::string& real_killer_name); int real_killer_id, const std::string& real_killer_name);

View File

@ -1039,6 +1039,11 @@ void Human::FillMFTeamPart(cs::MFTeamPart* p)
} }
void Human::FillMFTeamMemberNew(cs::MFTeamMemberNew* p)
{
}
void Human::FillSMGameOver(cs::SMGameOver& msg) void Human::FillSMGameOver(cs::SMGameOver& msg)
{ {
if (room->GetVictoryTeam()) { if (room->GetVictoryTeam()) {