1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 09:27:23 +08:00
osu-lazer/osu.Game/Overlays/Options/Graphics/MainMenuOptions.cs

21 lines
659 B
C#
Raw Normal View History

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