24 lines
542 B
C#
24 lines
542 B
C#
// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
|
|
|
|
using FlaxEngine;
|
|
|
|
namespace FlaxEditor.CustomEditors.Elements
|
|
{
|
|
/// <summary>
|
|
/// The integer value editor element.
|
|
/// </summary>
|
|
[HideInEditor]
|
|
public interface IIntegerValueEditor
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the value.
|
|
/// </summary>
|
|
int Value { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether user is using a slider.
|
|
/// </summary>
|
|
bool IsSliding { get; }
|
|
}
|
|
}
|