Files
RobustToolbox/Robust.Client/UserInterface/Controls/HBoxContainer.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
343 B
C#

namespace Robust.Client.UserInterface.Controls
{
[ControlWrap("HBoxContainer")]
public class HBoxContainer : BoxContainer
{
public HBoxContainer() : base()
{
}
public HBoxContainer(string name) : base(name)
{
}
private protected override bool Vertical => false;
}
}