示例#1
0
        public void ShowEnemies(PaintEventArgs e)
        {
            foreach (Alien alien in aliens)
            {
                alien.Show(e);
            }
            ufo.Show(e);

            bullets.ForEach(bullet => bullet.Show(e));
        }