mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 11:40:52 +01:00
* 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.
11 lines
291 B
C#
11 lines
291 B
C#
namespace Robust.Client.UserInterface.Controls
|
|
{
|
|
/// <summary>
|
|
/// Container that lays its children out horizontally: from left to right.
|
|
/// </summary>
|
|
public class HBoxContainer : BoxContainer
|
|
{
|
|
private protected override bool Vertical => false;
|
|
}
|
|
}
|