* add deconverted window * show deconverted window when deconverting + remove the role * webedit ops * antagonist -> revolutionary * evil * oh * eui ops --------- Co-authored-by: deltanedas <@deltanedas:kde.org>
17 lines
385 B
C#
17 lines
385 B
C#
using Content.Client.UserInterface.Controls;
|
|
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Content.Client.Revolutionary.UI;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class DeconvertedMenu : FancyWindow
|
|
{
|
|
public DeconvertedMenu()
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
|
|
ConfirmButton.OnPressed += _ => Close();
|
|
}
|
|
}
|