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