mirror of
https://github.com/ppy/osu
synced 2025-01-17 03:21:09 +00:00
17 lines
403 B
C#
17 lines
403 B
C#
using System;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class SongSelectGraphicsOptions : OptionsSubsection
|
|
{
|
|
public SongSelectGraphicsOptions()
|
|
{
|
|
Header = "Song Select";
|
|
Children = new[]
|
|
{
|
|
new BasicCheckBox { LabelText = "Show thumbnails" }
|
|
};
|
|
}
|
|
}
|
|
} |