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;
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Client.HUD.UI
|
2020-04-04 15:10:51 +02:00
|
|
|
{
|
|
|
|
|
public sealed class HighDivider : Control
|
|
|
|
|
{
|
|
|
|
|
public HighDivider()
|
|
|
|
|
{
|
|
|
|
|
Children.Add(new PanelContainer {StyleClasses = {StyleBase.ClassHighDivider}});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|