Files
RobustToolbox/Robust.Client/UserInterface/Controls/VBoxContainer.cs
T

19 lines
416 B
C#

namespace Robust.Client.UserInterface.Controls
{
/// <summary>
/// Container that lays its children out vertically: from top to bottom.
/// </summary>
public class VBoxContainer : BoxContainer
{
public VBoxContainer()
{
}
public VBoxContainer(string name) : base(name)
{
}
private protected override bool Vertical => true;
}
}