// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; namespace FlaxEditor.CustomEditors { /// /// Represents single element of the Custom Editor layout. /// [HideInEditor] public abstract class LayoutElement { /// /// Gets the control represented by this element. /// public abstract Control Control { get; } } }