mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 06:58:55 +03:00
* admin options tab initial * make admin tab only visible to admins (cherry picked from commit c698b163b6786954a75ef9f902b5e5bb2fdb7667)
21 lines
474 B
C#
21 lines
474 B
C#
using Content.Shared.CCVar;
|
|
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Content.Client.Options.UI.Tabs;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class AdminOptionsTab : Control
|
|
{
|
|
public AdminOptionsTab()
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
|
|
Control.AddOptionCheckBox(CCVars.AdminOverlayClassic, EnableClassicOverlayCheckBox);
|
|
|
|
Control.Initialize();
|
|
}
|
|
}
|
|
|