1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 16:07:24 +08:00
osu-lazer/osu.Game/Overlays/Options/Audio/AudioDevicesOptions.cs
2016-11-07 21:28:06 -05:00

17 lines
406 B
C#

using osu.Framework.Graphics.Sprites;
namespace osu.Game.Overlays.Options.Audio
{
public class AudioDevicesOptions : OptionsSubsection
{
protected override string Header => "Devices";
public AudioDevicesOptions()
{
Children = new[]
{
new SpriteText { Text = "Output device: TODO dropdown" }
};
}
}
}