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

22 lines
521 B
C#

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