mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 05:27:40 +08:00
17 lines
386 B
C#
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" }
|
|
};
|
|
}
|
|
}
|
|
} |