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;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
|
|
2016-11-08 10:24:41 +08:00
|
|
|
|
namespace osu.Game.Overlays.Options.Audio
|
2016-11-03 12:26:49 +08:00
|
|
|
|
{
|
|
|
|
|
public class VolumeOptions : OptionsSubsection
|
|
|
|
|
{
|
2016-11-04 11:01:11 +08:00
|
|
|
|
protected override string Header => "Volume";
|
|
|
|
|
|
2016-11-03 12:26:49 +08:00
|
|
|
|
public VolumeOptions()
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new SpriteText { Text = "Master: TODO slider" },
|
|
|
|
|
new SpriteText { Text = "Music: TODO slider" },
|
|
|
|
|
new SpriteText { Text = "Effect: TODO slider" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Ignore beatmap hitsounds" }
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|