// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Bindables; namespace osu.Framework.Graphics.UserInterface { /// /// A UI element which supports a current value. /// You can bind to 's to get updates. /// public interface IHasCurrentValue { /// /// Gets or sets the that provides the current value. /// /// /// A provided will be bound to, rather than be stored internally. /// Bindable Current { get; set; } } }