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

23 lines
546 B
C#

// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
using FlaxEngine;
using FlaxEngine.GUI;
namespace FlaxEditor.CustomEditors.Elements
{
/// <summary>
/// The button element.
/// </summary>
/// <seealso cref="FlaxEditor.CustomEditors.LayoutElement" />
public class ButtonElement : LayoutElement
{
/// <summary>
/// The button.
/// </summary>
public readonly Button Button = new Button();
/// <inheritdoc />
public override Control Control => Button;
}
}