예제 #1
0
        public static void Shoot(Alien shooter)
        {
            BulletAliens b = GetFreeBullet();

            if (b != null)
            {
                b.Shoot(new Vector2(shooter.Position.X, shooter.Position.Y + shooter.GetHeight() / 2 + 15), new Vector2(0, 250));
            }
        }