// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
using FlaxEngine.GUI;
namespace FlaxEditor.CustomEditors.Elements
{
///
/// The horizontal panel element.
///
///
public class HorizontalPanelElement : LayoutElementsContainer
{
///
/// The panel.
///
public readonly HorizontalPanel Panel = new HorizontalPanel();
///
public override ContainerControl ContainerControl => Panel;
}
}