mirror of
https://github.com/ppy/osu.git
synced 2024-11-17 15:52:55 +08:00
22 lines
543 B
C#
22 lines
543 B
C#
using System;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
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" },
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|