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