Beispiel #1
0
 public void BegainRound()
 {
     for (int i = 0; i < _goodMonsters.Length; i++)
     {
         Entity_303 currentMonster = _goodMonsters[i];
         currentMonster.Fight(_badMonsters);
     }
     for (int i = 0; i < _badMonsters.Length; i++)
     {
         Entity_303 currentMonster = _badMonsters[i];
         currentMonster.Fight(_goodMonsters);
     }
 }