ScrollingShooter.PlayerShip.ApplyTriShield C# (CSharp) Method

ApplyTriShield() private method

A helper function that initializes the tri-shield. Creates three trishield balls.
private ApplyTriShield ( ) : void
return void
        void ApplyTriShield()
        {
            //Create three balls, each at different rotations around the ship
            ScrollingShooterGame.GameObjectManager.CreateProjectile(ProjectileType.TrishieldBall, new Vector2(Bounds.Center.X, Bounds.Center.Y));
        }