- 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();
- }
- }
|