mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 01:57:07 +02:00
13 lines
277 B
C#
13 lines
277 B
C#
namespace Robust.Client.UserInterface.Controls;
|
|
|
|
/// <summary>
|
|
/// Convenience type to describe a vertical <see cref="BoxContainer"/>.
|
|
/// </summary>
|
|
public sealed class VBox : BoxContainer
|
|
{
|
|
public VBox()
|
|
{
|
|
Orientation = LayoutOrientation.Vertical;
|
|
}
|
|
}
|