mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 05:27:40 +08:00
22 lines
656 B
C#
22 lines
656 B
C#
using System;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class VolumeOptions : OptionsSubsection
|
|
{
|
|
public VolumeOptions()
|
|
{
|
|
Header = "Volume";
|
|
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" }
|
|
};
|
|
}
|
|
}
|
|
} |