23 lines
546 B
C#
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;
|
|
}
|
|
}
|