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