mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 14:07:53 +03:00
15 lines
349 B
C#
15 lines
349 B
C#
using Content.Client.Stylesheets;
|
|
using Robust.Client.UserInterface;
|
|
using Robust.Client.UserInterface.Controls;
|
|
|
|
namespace Content.Client.HUD.UI
|
|
{
|
|
public sealed class HighDivider : Control
|
|
{
|
|
public HighDivider()
|
|
{
|
|
Children.Add(new PanelContainer {StyleClasses = {StyleBase.ClassHighDivider}});
|
|
}
|
|
}
|
|
}
|