mirror of
https://github.com/osukey/osukey.git
synced 2025-05-02 04:07:22 +09:00
21 lines
538 B
C#
21 lines
538 B
C#
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
namespace osu.Game.Overlays.Options.Gameplay
|
|
{
|
|
public class SongSelectGameplayOptions : OptionsSubsection
|
|
{
|
|
protected override string Header => "Song Select";
|
|
|
|
public SongSelectGameplayOptions()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new SpriteText { Text = "Display beatmaps from: TODO slider" },
|
|
new SpriteText { Text = "up to: TODO slider" },
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|