예제 #1
0
void MonsterBase::cleanAllMonster()
{
	Monsters * monsters = Monsters::getInstance();
	for(auto x = monsters->getMonsterVector().begin(); x != monsters->getMonsterVector().end(); x++)
	{
		(*x)->monsterDie();
	}
}