mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 02:27:08 +02:00
Let's be real, it's pretty damn broken already and will never be fixed.
11 lines
252 B
C#
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() {}
|
|
}
|
|
}
|