// 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; using osu.Game.Rulesets.Objects; using osu.Game.Rulesets.UI.Scrolling.Algorithms; namespace osu.Game.Rulesets.UI.Scrolling { public interface IScrollingInfo { /// /// The direction s should scroll in. /// IBindable Direction { get; } /// /// /// IBindable TimeRange { get; } /// /// The algorithm which controls positions and sizes. /// IScrollAlgorithm Algorithm { get; } } }