Files
RobustToolbox/Robust.Client/UserInterface/Controls/VBoxContainer.cs
Pieter-Jan Briers cb5f2ffae1 Refactor UI system. (#843)
* Refactor UI system.

Deferred updating is used for styling & layout. This fixes the awful time complexity of containers.
Removed SetDefaults and Initialize. They were a bad idea alright.

* Fix build on .NET Framework.
2019-08-14 22:03:51 +02:00

11 lines
288 B
C#

namespace Robust.Client.UserInterface.Controls
{
/// <summary>
/// Container that lays its children out vertically: from top to bottom.
/// </summary>
public class VBoxContainer : BoxContainer
{
private protected override bool Vertical => true;
}
}