Files

16 lines
476 B
C#
Raw Permalink Normal View History

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