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