Files
FlaxEngine/Source/Editor/CustomEditors/Elements/IFloatValueEditor.cs
2021-01-02 14:28:49 +01:00

21 lines
511 B
C#

// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
namespace FlaxEditor.CustomEditors.Elements
{
/// <summary>
/// The floating point value editor element.
/// </summary>
public interface IFloatValueEditor
{
/// <summary>
/// Gets or sets the value.
/// </summary>
float Value { get; set; }
/// <summary>
/// Gets a value indicating whether user is using a slider.
/// </summary>
bool IsSliding { get; }
}
}