1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 06:47:25 +08:00
osu-lazer/osu.Game/Overlays/Options/DetailOptions.cs

27 lines
966 B
C#
Raw Normal View History

2016-11-03 10:49:26 +08:00
using System;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.UserInterface;
namespace osu.Game.Overlays.Options
{
2016-11-03 12:26:49 +08:00
public class DetailOptions : OptionsSubsection
2016-11-03 10:49:26 +08:00
{
protected override string Header => "Detail Settings";
2016-11-03 12:26:49 +08:00
public DetailOptions()
2016-11-03 10:49:26 +08:00
{
Children = new Drawable[]
{
new BasicCheckBox { LabelText = "Snaking sliders" },
new BasicCheckBox { LabelText = "Background video" },
new BasicCheckBox { LabelText = "Storyboards" },
new BasicCheckBox { LabelText = "Combo bursts" },
new BasicCheckBox { LabelText = "Hit lighting" },
new BasicCheckBox { LabelText = "Shaders" },
new BasicCheckBox { LabelText = "Softening filter" },
new SpriteText { Text = "Screenshot format TODO: dropdown" }
};
}
}
}