Files
FlaxEngine/Source/Editor/CustomEditors/Elements/ButtonElement.cs
2022-03-24 11:32:02 +01:00

23 lines
546 B
C#

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