mirror of
https://github.com/osukey/osukey.git
synced 2025-05-02 04:07:22 +09: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" }
|
|
};
|
|
}
|
|
}
|
|
} |