mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:47:29 +08:00
21 lines
535 B
C#
21 lines
535 B
C#
using osu.Framework.Graphics;
|
|
using osu.Game.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Options.Audio
|
|
{
|
|
public class AudioSection : OptionsSection
|
|
{
|
|
protected override string Header => "Audio";
|
|
public override FontAwesome Icon => FontAwesome.fa_headphones;
|
|
|
|
public AudioSection()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new AudioDevicesOptions(),
|
|
new VolumeOptions(),
|
|
new OffsetAdjustmentOptions(),
|
|
};
|
|
}
|
|
}
|
|
} |