mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 06:07:28 +08:00
17 lines
426 B
C#
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" }
|
|
};
|
|
}
|
|
}
|
|
} |