This commit is contained in:
aozhiwei 2022-10-14 13:11:24 +08:00
parent 772ca5de88
commit d94b9a64d5
2 changed files with 6 additions and 0 deletions

View File

@ -783,3 +783,8 @@ bool MatchTeam::HaveEmptySlot()
{
return false;
}
int MatchTeam::GetFreeSlotNum()
{
return 0;
}

View File

@ -75,6 +75,7 @@ class MatchTeam
std::shared_ptr<RawTeamMember> GetOwner() { return first_member_; };
int GetSlotNum();
bool HaveEmptySlot();
int GetFreeSlotNum();
private:
void Update();