1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-17 18:22:54 +08:00
osu-lazer/osu.Game/Overlays/Options/MainMenuOptions.cs

22 lines
664 B
C#
Raw Normal View History

2016-11-03 10:49:26 +08:00
using System;
using osu.Framework.Graphics.UserInterface;
namespace osu.Game.Overlays.Options
{
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" },
};
}
}
}