16 lines
476 B
C#
16 lines
476 B
C#
|
|
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);
|
|||
|
|
}
|
|||
|
|
}
|