Пример #1
0
 private void RemoveAllBullets()
 {
     foreach (BulletModel bullet in MainContent.EnemyBulletList.ToList())
     {
         MainContent.RemoveBullet(bullet);
         MainContent.DrawBigExplosion(bullet.GetLocation());
     }
 }