DeconvertedMenu.xaml.cs 385 B

12345678910111213141516
  1. using Content.Client.UserInterface.Controls;
  2. using Robust.Client.AutoGenerated;
  3. using Robust.Client.UserInterface.XAML;
  4. namespace Content.Client.Revolutionary.UI;
  5. [GenerateTypedNameReferences]
  6. public sealed partial class DeconvertedMenu : FancyWindow
  7. {
  8. public DeconvertedMenu()
  9. {
  10. RobustXamlLoader.Load(this);
  11. ConfirmButton.OnPressed += _ => Close();
  12. }
  13. }