mirror of
https://github.com/ppy/osu.git
synced 2024-11-19 09:32:54 +08:00
16 lines
680 B
C#
16 lines
680 B
C#
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
|
|||
|
|
|||
|
using System.Collections.Generic;
|
|||
|
using osu.Game.Rulesets.Objects.Drawables;
|
|||
|
using OpenTK;
|
|||
|
|
|||
|
namespace osu.Game.Rulesets.UI.Scrolling.Algorithms
|
|||
|
{
|
|||
|
public interface IScrollingAlgorithm
|
|||
|
{
|
|||
|
void ComputeInitialStates(IEnumerable<DrawableHitObject> hitObjects, ScrollingDirection direction, double timeRange, Vector2 length);
|
|||
|
void ComputePositions(IEnumerable<DrawableHitObject> hitObjects, ScrollingDirection direction, double currentTime, double timeRange, Vector2 length);
|
|||
|
}
|
|||
|
}
|