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