// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
using FlaxEngine.GUI;
namespace FlaxEditor.CustomEditors.Elements
{
///
/// The layout group element.
///
///
public class GroupElement : LayoutElementsContainer
{
///
/// The drop panel.
///
public readonly DropPanel Panel = new DropPanel();
///
public override ContainerControl ContainerControl => Panel;
}
}