1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 22:22:54 +08:00
osu-lazer/osu.Game/Overlays/Options/Graphics/SongSelectGraphicsOptions.cs

17 lines
426 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 SongSelectGraphicsOptions : OptionsSubsection
{
protected override string Header => "Song Select";
2016-11-03 10:49:26 +08:00
public SongSelectGraphicsOptions()
{
Children = new[]
{
new BasicCheckBox { LabelText = "Show thumbnails" }
};
}
}
}