Files
RobustToolbox/Robust.Client/UserInterface/Controls/VSplitContainer.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

11 lines
252 B
C#

namespace Robust.Client.UserInterface.Controls
{
[ControlWrap("VSplitContainer")]
public class VSplitContainer : SplitContainer
{
private protected sealed override bool Vertical => true;
public VSplitContainer() {}
}
}