mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 22:49:01 +03:00
# Description Removed duplicate using statements, removed unused using statements. this will decrease the number of warnings a small bit, and decrease unused dependency references in general. --- # TODO - [x] Remove double references. - [x] Remove unused references. --- # Changelog 🆑 - remove: double references in code - remove: unused references in code that had double references. Co-authored-by: ilmenwe <no@mail.com> (cherry picked from commit 9b73c88feefff68223f083893505826dc021ddee)
32 lines
943 B
C#
32 lines
943 B
C#
using Content.Client.Options.UI.Tabs;
|
|
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.CustomControls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
|
|
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"));
|
|
Tabs.SetTabTitle(4, Loc.GetString("ui-options-tab-network"));
|
|
|
|
UpdateTabs();
|
|
}
|
|
|
|
public void UpdateTabs()
|
|
{
|
|
GraphicsTab.UpdateProperties();
|
|
}
|
|
}
|
|
}
|