mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 04:49:40 +08:00
21 lines
515 B
C#
21 lines
515 B
C#
using System;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class SongSelectGameplayOptions : OptionsSubsection
|
|
{
|
|
public SongSelectGameplayOptions()
|
|
{
|
|
Header = "Song Select";
|
|
Children = new Drawable[]
|
|
{
|
|
new SpriteText { Text = "Display beatmaps from: TODO slider" },
|
|
new SpriteText { Text = "up to: TODO slider" },
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|