2016-11-08 10:28:06 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-11-03 12:26:49 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
|
2016-11-08 10:24:41 +08:00
|
|
|
|
namespace osu.Game.Overlays.Options.Gameplay
|
2016-11-03 12:26:49 +08:00
|
|
|
|
{
|
|
|
|
|
public class SongSelectGameplayOptions : OptionsSubsection
|
|
|
|
|
{
|
2016-11-04 11:01:11 +08:00
|
|
|
|
protected override string Header => "Song Select";
|
2016-11-09 11:38:40 +08:00
|
|
|
|
|
2016-11-03 12:26:49 +08:00
|
|
|
|
public SongSelectGameplayOptions()
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new SpriteText { Text = "Display beatmaps from: TODO slider" },
|
|
|
|
|
new SpriteText { Text = "up to: TODO slider" },
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|