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