Rework options menu.

It's much nicer now.
This commit is contained in:
Pieter-Jan Briers
2020-09-07 12:23:10 +02:00
parent 005aad8da5
commit f96f286ca4
10 changed files with 738 additions and 624 deletions

View File

@@ -0,0 +1,21 @@
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."
});
}
}
}
}