Files
FlaxEngine/Source/Editor/CustomEditors/LayoutElement.cs
2021-01-02 14:28:49 +01:00

20 lines
468 B
C#

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