mirror of
https://github.com/ppy/osu
synced 2024-12-24 07:42:55 +00:00
18 lines
414 B
C#
18 lines
414 B
C#
using System;
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class AudioDevicesOptions : OptionsSubsection
|
|
{
|
|
protected override string Header => "Devices";
|
|
|
|
public AudioDevicesOptions()
|
|
{
|
|
Children = new[]
|
|
{
|
|
new SpriteText { Text = "Output device: TODO dropdown" }
|
|
};
|
|
}
|
|
}
|
|
} |