mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 10:07:15 +02:00
20 lines
463 B
C#
20 lines
463 B
C#
namespace Robust.Client.UserInterface.Controls
|
|
{
|
|
/// <summary>
|
|
/// Container that lays its children out horizontally: from left to right.
|
|
/// </summary>
|
|
[ControlWrap("HBoxContainer")]
|
|
public class HBoxContainer : BoxContainer
|
|
{
|
|
public HBoxContainer() : base()
|
|
{
|
|
}
|
|
|
|
public HBoxContainer(string name) : base(name)
|
|
{
|
|
}
|
|
|
|
private protected override bool Vertical => false;
|
|
}
|
|
}
|