// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
using FlaxEngine.GUI;
namespace FlaxEditor.CustomEditors.Elements
{
///
/// The checkbox element.
///
///
public class CheckBoxElement : LayoutElement
{
///
/// The check box.
///
public readonly CheckBox CheckBox;
///
/// Initializes a new instance of the class.
///
public CheckBoxElement()
{
CheckBox = new CheckBox(0, 0);
}
///
public override Control Control => CheckBox;
}
}