StrippingWindow.xaml.cs 476 B

123456789101112131415
  1. using Robust.Client.AutoGenerated;
  2. using Robust.Client.UserInterface.Controls;
  3. using Robust.Client.UserInterface.XAML;
  4. namespace Content.Client.UserInterface.Systems.Inventory.Windows;
  5. [GenerateTypedNameReferences]
  6. public sealed partial class StrippingWindow : UserInterface.Controls.FancyWindow
  7. {
  8. public StrippingWindow()
  9. {
  10. RobustXamlLoader.Load(this);
  11. LayoutContainer.SetAnchorAndMarginPreset(this, LayoutContainer.LayoutPreset.Center);
  12. }
  13. }