This commit is contained in:
aozhiwei 2023-09-23 09:39:17 +08:00
parent 27eb77a533
commit 3ec093471a
2 changed files with 6 additions and 0 deletions

View File

@ -3515,3 +3515,8 @@ bool Room::IsPvpMasterRankModeRoom()
{
return rank_match_conf_ && rank_match_conf_->room_type == RoomType_MasterRank;
}
int Room::GetMaxTeamNum()
{
return MAX_TEAM_NUM;
}

View File

@ -272,6 +272,7 @@ public:
bool MoveCanReach(const glm::vec3& start, const glm::vec3& end);
const mt::RankMatchConf* GetRankMatchConf() { return rank_match_conf_; }
bool IsCustomBattle() { return custom_battle_ != nullptr;}
int GetMaxTeamNum();
private:
void ShuaAndroid();