mirror of
https://github.com/osukey/osukey.git
synced 2025-05-02 04:07:22 +09:00
21 lines
659 B
C#
21 lines
659 B
C#
using osu.Framework.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Overlays.Options.Graphics
|
|
{
|
|
public class MainMenuOptions : OptionsSubsection
|
|
{
|
|
protected override string Header => "Main Menu";
|
|
|
|
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" },
|
|
};
|
|
}
|
|
}
|
|
} |