game2006/server/gameserver/custom_member.cc
aozhiwei cc0bf35f27 1
2023-10-02 15:48:15 +08:00

20 lines
324 B
C++

#include "precompile.h"
#include "custom_battle.h"
#include "custom_team.h"
#include "custom_member.h"
#include "netdata.h"
#include "player.h"
#include "global.h"
void CustomMember::Join(Player* hum)
{
joined_ = true;
join_time_ = Global::g_nowtime;
}
bool CustomMember::IsView()
{
return team_->IsView();
}