osu/osu.Game/Overlays/Options/Graphics/MainMenuOptions.cs

21 lines
659 B
C#
Raw Normal View History

2016-11-08 02:28:06 +00:00
using osu.Framework.Graphics.UserInterface;
2016-11-03 02:49:26 +00:00
2016-11-08 02:24:41 +00:00
namespace osu.Game.Overlays.Options.Graphics
2016-11-03 02:49:26 +00:00
{
public class MainMenuOptions : OptionsSubsection
{
protected override string Header => "Main Menu";
2016-11-03 02:49:26 +00:00
public MainMenuOptions()
{
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" },
};
}
}
}