17 lines
533 B
C#
17 lines
533 B
C#
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.CustomControls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Content.Client.UserInterface.Systems.Ghost.Controls.Roles
|
|
{
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class GhostRoleRulesWindow : DefaultWindow
|
|
{
|
|
public GhostRoleRulesWindow(string rules)
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
TopBanner.SetMessage(FormattedMessage.FromMarkupPermissive(rules));
|
|
}
|
|
}
|
|
}
|