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