| 123456789101112131415 |
- using Robust.Client.AutoGenerated;
- using Robust.Client.UserInterface.Controls;
- using Robust.Client.UserInterface.XAML;
- namespace Content.Client.UserInterface.Systems.Inventory.Windows;
- [GenerateTypedNameReferences]
- public sealed partial class StrippingWindow : UserInterface.Controls.FancyWindow
- {
- public StrippingWindow()
- {
- RobustXamlLoader.Load(this);
- LayoutContainer.SetAnchorAndMarginPreset(this, LayoutContainer.LayoutPreset.Center);
- }
- }
|