mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:47:38 +08:00
18 lines
431 B
C#
18 lines
431 B
C#
using System;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class SongSelectGraphicsOptions : OptionsSubsection
|
|
{
|
|
protected override string Header => "Song Select";
|
|
|
|
public SongSelectGraphicsOptions()
|
|
{
|
|
Children = new[]
|
|
{
|
|
new BasicCheckBox { LabelText = "Show thumbnails" }
|
|
};
|
|
}
|
|
}
|
|
} |