Add ban list window (#12574)
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using Robust.Client.AutoGenerated;
|
||||
using Robust.Client.UserInterface.Controls;
|
||||
using Robust.Client.UserInterface.XAML;
|
||||
|
||||
namespace Content.Client.Administration.UI.BanList;
|
||||
|
||||
[GenerateTypedNameReferences]
|
||||
public sealed partial class BanListIdsPopup : Popup
|
||||
{
|
||||
public BanListIdsPopup(string? ip, string? hwid, string? guid)
|
||||
{
|
||||
RobustXamlLoader.Load(this);
|
||||
|
||||
IP.Text = ip;
|
||||
HWId.Text = hwid;
|
||||
GUID.Text = guid;
|
||||
|
||||
UserInterfaceManager.ModalRoot.AddChild(this);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user