15 lines
362 B
C#
15 lines
362 B
C#
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.CustomControls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Content.Client.UserInterface.Systems.Sandbox.Windows;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class SandboxWindow : DefaultWindow
|
|
{
|
|
public SandboxWindow()
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
}
|
|
}
|