1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 13:27:25 +08:00
osu-lazer/osu.Game/Overlays/Options/Gameplay/SongSelectGameplayOptions.cs
2016-11-08 23:17:08 -05:00

21 lines
534 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" },
};
}
}
}