Files
tbd-station-14/Content.Client/UserInterface/OptionsMenu.Audio.cs
Pieter-Jan Briers f96f286ca4 Rework options menu.
It's much nicer now.
2020-09-07 12:23:28 +02:00

22 lines
624 B
C#

using Robust.Client.Interfaces.ResourceManagement;
using Robust.Client.UserInterface;
using Robust.Shared.Interfaces.Configuration;
using Robust.Shared.IoC;
namespace Content.Client.UserInterface
{
public sealed partial class OptionsMenu
{
private sealed class AudioControl : Control
{
public AudioControl(IConfigurationManager cfg)
{
AddChild(new Placeholder(IoCManager.Resolve<IResourceCache>())
{
PlaceholderText = "Pretend there's a bunch of volume sliders here."
});
}
}
}
}