1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-11 15:17:46 +08:00
osu-lazer/osu.Game/Overlays/Options/SongSelectGraphicsOptions.cs

18 lines
431 B
C#
Raw Normal View History

2016-11-02 22:49:26 -04:00
using System;
using osu.Framework.Graphics.UserInterface;
namespace osu.Game.Overlays.Options
{
public class SongSelectGraphicsOptions : OptionsSubsection
{
protected override string Header => "Song Select";
2016-11-02 22:49:26 -04:00
public SongSelectGraphicsOptions()
{
Children = new[]
{
new BasicCheckBox { LabelText = "Show thumbnails" }
};
}
}
}