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

45 lines
1.4 KiB
C#
Raw Normal View History

2016-11-09 03:38:40 +00:00
using osu.Framework;
2016-11-10 22:40:42 +00:00
using osu.Framework.Allocation;
2016-11-09 03:38:40 +00:00
using osu.Framework.Graphics.UserInterface;
using osu.Game.Configuration;
2016-11-03 02:49:26 +00:00
2016-11-10 22:40:42 +00:00
namespace osu.Game.Overlays.Options.Graphics
{
public class MainMenuOptions : OptionsSubsection
{
2016-11-09 03:38:40 +00:00
protected override string Header => "Main Menu";
2016-11-10 22:40:42 +00:00
[Initializer]
private void Load(OsuConfigManager config)
2016-11-09 03:38:40 +00:00
{
2016-11-10 22:40:42 +00:00
Children = new[]
2016-11-09 03:38:40 +00:00
{
2016-11-10 22:40:42 +00:00
new CheckBoxOption
{
LabelText = "Snow",
Bindable = config.GetBindable<bool>(OsuConfig.MenuSnow)
},
new CheckBoxOption
{
LabelText = "Parallax",
Bindable = config.GetBindable<bool>(OsuConfig.MenuParallax)
},
new CheckBoxOption
{
LabelText = "Menu tips",
Bindable = config.GetBindable<bool>(OsuConfig.ShowMenuTips)
},
new CheckBoxOption
{
LabelText = "Interface voices",
Bindable = config.GetBindable<bool>(OsuConfig.MenuVoice)
},
new CheckBoxOption
{
LabelText = "osu! music theme",
Bindable = config.GetBindable<bool>(OsuConfig.MenuMusic)
},
};
}
}
2016-11-03 02:49:26 +00:00
}