Remove unused code

This commit is contained in:
smoogipoo 2018-11-06 14:23:54 +09:00
parent 9fde7f7f44
commit 48486895ba
1 changed files with 0 additions and 7 deletions

View File

@ -5,10 +5,8 @@
using osu.Framework.Caching;
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Lists;
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Objects.Types;
using osu.Game.Rulesets.Timing;
using osu.Game.Rulesets.UI.Scrolling.Algorithms;
namespace osu.Game.Rulesets.UI.Scrolling
@ -24,11 +22,6 @@ public class ScrollingHitObjectContainer : HitObjectContainer
MaxValue = double.MaxValue
};
/// <summary>
/// The control points that adjust the scrolling speed.
/// </summary>
protected readonly SortedList<MultiplierControlPoint> ControlPoints = new SortedList<MultiplierControlPoint>();
public readonly Bindable<ScrollingDirection> Direction = new Bindable<ScrollingDirection>();
[Resolved]