1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 10:47:24 +08:00
osu-lazer/osu.Game/Overlays/Options/AudioDevicesOptions.cs
2016-11-03 19:06:22 -04:00

17 lines
386 B
C#

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