23 lines
660 B
C#
23 lines
660 B
C#
|
|
using Content.Client.Stylesheets;
|
|||
|
|
using Content.Client.UserInterface;
|
|||
|
|
using Robust.Client.AutoGenerated;
|
|||
|
|
using Robust.Client.UserInterface.Controls;
|
|||
|
|
using Robust.Client.UserInterface.CustomControls;
|
|||
|
|
using Robust.Client.UserInterface.XAML;
|
|||
|
|
using Robust.Client.Graphics;
|
|||
|
|
|
|||
|
|
namespace Content.Client.NetworkConfigurator;
|
|||
|
|
|
|||
|
|
[GenerateTypedNameReferences]
|
|||
|
|
public sealed partial class NetworkConfiguratorConfigurationMenu : FancyWindow
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public NetworkConfiguratorConfigurationMenu()
|
|||
|
|
{
|
|||
|
|
RobustXamlLoader.Load(this);
|
|||
|
|
|
|||
|
|
Clear.StyleClasses.Add(StyleBase.ButtonOpenLeft);
|
|||
|
|
Clear.StyleClasses.Add(StyleNano.StyleClassButtonColorRed);
|
|||
|
|
}
|
|||
|
|
}
|