[feat]enableShuttleCall command and button to admin menu

This commit is contained in:
rhailrake
2023-04-27 22:45:07 +06:00
committed by Remuchi
parent 2fc83dce19
commit 6202617b8c
6 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using Robust.Client.AutoGenerated;
using Robust.Client.UserInterface.CustomControls;
using Robust.Client.UserInterface.XAML;
namespace Content.Client.Administration.UI.Tabs.AdminTab
{
[GenerateTypedNameReferences]
public sealed partial class AdminShuttleCallEnableWindow : DefaultWindow
{
public AdminShuttleCallEnableWindow()
{
RobustXamlLoader.Load(this);
IoCManager.InjectDependencies(this);
}
}
}