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

20 lines
468 B
C#

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