// 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.Game.Rulesets.UI.Scrolling { /// /// Denotes a which supports toggling constant algorithm for better display in the editor. /// public interface ISupportConstantAlgorithmToggle : IDrawableScrollingRuleset { public BindableBool ShowSpeedChanges { get; } } }