Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com> Co-authored-by: Jezithyr <jmaster9999@gmail.com> Co-authored-by: Jezithyr <Jezithyr@gmail.com> Co-authored-by: Visne <39844191+Visne@users.noreply.github.com> Co-authored-by: wrexbe <wrexbe@protonmail.com> Co-authored-by: wrexbe <81056464+wrexbe@users.noreply.github.com>
26 lines
1.1 KiB
C#
26 lines
1.1 KiB
C#
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.CustomControls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Content.Client.Administration.UI
|
|
{
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class AdminMenuWindow : DefaultWindow
|
|
{
|
|
public AdminMenuWindow()
|
|
{
|
|
MinSize = (500, 250);
|
|
Title = Loc.GetString("admin-menu-title");
|
|
RobustXamlLoader.Load(this);
|
|
IoCManager.InjectDependencies(this);
|
|
MasterTabContainer.SetTabTitle(0, Loc.GetString("admin-menu-admin-tab"));
|
|
MasterTabContainer.SetTabTitle(1, Loc.GetString("admin-menu-adminbus-tab"));
|
|
MasterTabContainer.SetTabTitle(2, Loc.GetString("admin-menu-atmos-tab"));
|
|
MasterTabContainer.SetTabTitle(3, Loc.GetString("admin-menu-round-tab"));
|
|
MasterTabContainer.SetTabTitle(4, Loc.GetString("admin-menu-server-tab"));
|
|
MasterTabContainer.SetTabTitle(5, Loc.GetString("admin-menu-players-tab"));
|
|
MasterTabContainer.SetTabTitle(6, Loc.GetString("admin-menu-objects-tab"));
|
|
}
|
|
}
|
|
}
|