Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ppy
GitHub Repository: ppy/osu
Path: blob/master/osu.Game/Rulesets/UI/Scrolling/ISupportConstantAlgorithmToggle.cs
4354 views
// Copyright (c) ppy Pty Ltd <[email protected]>. 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
{
    /// <summary>
    /// Denotes a <see cref="IDrawableScrollingRuleset"/> which supports toggling constant algorithm for better display in the editor.
    /// </summary>
    public interface ISupportConstantAlgorithmToggle : IDrawableScrollingRuleset
    {
        BindableBool ShowSpeedChanges { get; }
    }
}