- Change namespace, and folder of FancyWindow to Content.Client.UserInterface.Controls - Change xaml reference from ui to controls in some places - Change ClientAlertsSystem from internal to public - Change namespace, and folder of HighDivider to Content.Client.UserInterface.Controls
15 lines
365 B
C#
15 lines
365 B
C#
using Content.Client.Stylesheets;
|
|
using Robust.Client.UserInterface;
|
|
using Robust.Client.UserInterface.Controls;
|
|
|
|
namespace Content.Client.UserInterface.Controls
|
|
{
|
|
public sealed class HighDivider : Control
|
|
{
|
|
public HighDivider()
|
|
{
|
|
Children.Add(new PanelContainer {StyleClasses = {StyleBase.ClassHighDivider}});
|
|
}
|
|
}
|
|
}
|