1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 06:07:28 +08:00
osu-lazer/osu.Game/Overlays/Options/Graphics/SongSelectGraphicsOptions.cs
2016-11-07 21:28:06 -05:00

17 lines
426 B
C#

using osu.Framework.Graphics.UserInterface;
namespace osu.Game.Overlays.Options.Graphics
{
public class SongSelectGraphicsOptions : OptionsSubsection
{
protected override string Header => "Song Select";
public SongSelectGraphicsOptions()
{
Children = new[]
{
new BasicCheckBox { LabelText = "Show thumbnails" }
};
}
}
}