osukey/osu.Game/Overlays/Options/MainMenuOptions.cs
2016-11-03 19:06:22 -04:00

21 lines
636 B
C#

using System;
using osu.Framework.Graphics.UserInterface;
namespace osu.Game.Overlays.Options
{
public class MainMenuOptions : OptionsSubsection
{
public MainMenuOptions()
{
Header = "Main Menu";
Children = new[]
{
new BasicCheckBox { LabelText = "Snow" },
new BasicCheckBox { LabelText = "Parallax" },
new BasicCheckBox { LabelText = "Menu tips" },
new BasicCheckBox { LabelText = "Interface voices" },
new BasicCheckBox { LabelText = "osu! music theme" },
};
}
}
}