mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 07:12:27 +02:00
Let's be real, it's pretty damn broken already and will never be fixed.
17 lines
333 B
C#
17 lines
333 B
C#
namespace Robust.Client.UserInterface.Controls
|
|
{
|
|
[ControlWrap("VBoxContainer")]
|
|
public class VBoxContainer : BoxContainer
|
|
{
|
|
public VBoxContainer()
|
|
{
|
|
}
|
|
|
|
public VBoxContainer(string name) : base(name)
|
|
{
|
|
}
|
|
|
|
private protected override bool Vertical => true;
|
|
}
|
|
}
|