Files
FlaxEngine/Source/Editor/CustomEditors/LayoutElement.cs

20 lines
458 B
C#

// Copyright (c) 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; }
}
}