mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-07 02:08:17 +02:00
17 lines
413 B
C#
17 lines
413 B
C#
using System;
|
|
|
|
namespace Robust.Client.UserInterface.Controls
|
|
{
|
|
/// <summary>
|
|
/// Container that lays its children out vertically: from top to bottom.
|
|
/// </summary>
|
|
[Obsolete("Use BoxContainer and set Orientation instead")]
|
|
public class VBoxContainer : BoxContainer
|
|
{
|
|
public VBoxContainer()
|
|
{
|
|
Orientation = LayoutOrientation.Vertical;
|
|
}
|
|
}
|
|
}
|