game2006/server/gameserver/custom_member.cc
aozhiwei 6ddf67363f 1
2023-11-27 15:15:43 +08:00

22 lines
361 B
C++

#include "precompile.h"
#include <f8/app.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_ = f8::App::Instance()->GetNowTime();
}
bool CustomMember::IsView()
{
return team_->IsView();
}