mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 15:22:27 +02:00
Let's be real, it's pretty damn broken already and will never be fixed.
17 lines
343 B
C#
17 lines
343 B
C#
namespace Robust.Client.UserInterface.Controls
|
|
{
|
|
[ControlWrap("HBoxContainer")]
|
|
public class HBoxContainer : BoxContainer
|
|
{
|
|
public HBoxContainer() : base()
|
|
{
|
|
}
|
|
|
|
public HBoxContainer(string name) : base(name)
|
|
{
|
|
}
|
|
|
|
private protected override bool Vertical => false;
|
|
}
|
|
}
|