//Copyright (c) 2007-2016 ppy Pty Ltd . //Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework; using osu.Framework.Allocation; using osu.Framework.Graphics.UserInterface; using osu.Game.Configuration; namespace osu.Game.Overlays.Options.Graphics { public class MainMenuOptions : OptionsSubsection { protected override string Header => "Main Menu"; [BackgroundDependencyLoader] private void load(OsuConfigManager config) { Children = new[] { new CheckBoxOption { LabelText = "Snow", Bindable = config.GetBindable(OsuConfig.MenuSnow) }, new CheckBoxOption { LabelText = "Parallax", Bindable = config.GetBindable(OsuConfig.MenuParallax) }, new CheckBoxOption { LabelText = "Menu tips", Bindable = config.GetBindable(OsuConfig.ShowMenuTips) }, new CheckBoxOption { LabelText = "Interface voices", Bindable = config.GetBindable(OsuConfig.MenuVoice) }, new CheckBoxOption { LabelText = "osu! music theme", Bindable = config.GetBindable(OsuConfig.MenuMusic) }, }; } } }