Fix repeat points not following slider snaking correctly

This commit is contained in:
Dean Herbert
2018-01-18 21:06:47 +09:00
parent cc6f541374
commit 01ff1584c2
4 changed files with 21 additions and 3 deletions

View File

@ -0,0 +1,12 @@
using OpenTK;
namespace osu.Game.Rulesets.Osu.Objects.Drawables
{
/// <summary>
/// A component which tracks the current end snaking position of a slider.
/// </summary>
public interface ITrackSnaking
{
void UpdateSnakingPosition(Vector2 start, Vector2 end);
}
}