It is useless and bloat, if a user needs to change these settings they are free to modify their cvars manually via the clientconfig.toml file or via the cvar command.
32 lines
894 B
C#
32 lines
894 B
C#
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.CustomControls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
using Robust.Shared.IoC;
|
|
using Content.Client.Options.UI.Tabs;
|
|
|
|
|
|
namespace Content.Client.Options.UI
|
|
{
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class OptionsMenu : DefaultWindow
|
|
{
|
|
public OptionsMenu()
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
IoCManager.InjectDependencies(this);
|
|
|
|
Tabs.SetTabTitle(0, Loc.GetString("ui-options-tab-misc"));
|
|
Tabs.SetTabTitle(1, Loc.GetString("ui-options-tab-graphics"));
|
|
Tabs.SetTabTitle(2, Loc.GetString("ui-options-tab-controls"));
|
|
Tabs.SetTabTitle(3, Loc.GetString("ui-options-tab-audio"));
|
|
|
|
UpdateTabs();
|
|
}
|
|
|
|
public void UpdateTabs()
|
|
{
|
|
GraphicsTab.UpdateProperties();
|
|
}
|
|
}
|
|
}
|