Files
FlaxEngine/Source/Editor/CustomEditors/Elements/Container/VerticalPanelElement.cs
2023-01-10 15:29:37 +01:00

22 lines
582 B
C#

// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
using FlaxEngine.GUI;
namespace FlaxEditor.CustomEditors.Elements
{
/// <summary>
/// The vertical panel element.
/// </summary>
/// <seealso cref="FlaxEditor.CustomEditors.LayoutElement" />
public class VerticalPanelElement : LayoutElementsContainer
{
/// <summary>
/// The panel.
/// </summary>
public readonly VerticalPanel Panel = new VerticalPanel();
/// <inheritdoc />
public override ContainerControl ContainerControl => Panel;
}
}