This commit is contained in:
aozhiwei 2024-08-29 16:56:09 +08:00
parent 4f3795648e
commit c003a4839d
3 changed files with 9 additions and 0 deletions

View File

@ -643,3 +643,8 @@ void Incubator::Rearrangement()
}
#endif
}
void Incubator::StartNewBattleMode()
{
}

View File

@ -20,6 +20,7 @@ class Incubator
void NextWave();
void ShowHand();
void Clear(int save_num);
void StartNewBattleMode();
private:
bool CanSee(Human* hum, Human* exclude_hum);

View File

@ -4332,4 +4332,7 @@ void Room::MobaOver()
void Room::SetNewBieBattle(int is_newbie_battle)
{
is_newbie_battle_ = is_newbie_battle;
if (is_newbie_battle_) {
GetIncubator()->StartNewBattleMode();
}
}