Files
RobustToolbox/Robust.Client/UserInterface/Controls/VBoxContainer.cs
T
Pieter-Jan BriersandGitHub cf2995437f Remove Godot support. (#805)
Let's be real, it's pretty damn broken already and will never be fixed.
2019-05-05 01:58:24 +02:00

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;
}
}