Asteroids.Game1.LevelsIncrease C# (CSharp) Method

LevelsIncrease() public method

public LevelsIncrease ( ) : void
return void
        public void LevelsIncrease()
        {
            numOfAsteroids += r.Next(0, 3);
            hud.SetLevel(1);
            Initialize();
        }