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