2021-06-09 22:19:39 +02:00
|
|
|
using Content.Client.Stylesheets;
|
2020-04-04 15:10:51 +02:00
|
|
|
using Robust.Client.UserInterface;
|
|
|
|
|
using Robust.Client.UserInterface.Controls;
|
|
|
|
|
|
2022-09-11 18:56:21 -07:00
|
|
|
namespace Content.Client.UserInterface.Controls
|
2020-04-04 15:10:51 +02:00
|
|
|
{
|
|
|
|
|
public sealed class HighDivider : Control
|
|
|
|
|
{
|
|
|
|
|
public HighDivider()
|
|
|
|
|
{
|
|
|
|
|
Children.Add(new PanelContainer {StyleClasses = {StyleBase.ClassHighDivider}});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|