mirror of
https://github.com/osukey/osukey.git
synced 2025-05-02 20:27:27 +09:00
13 lines
311 B
C#
13 lines
311 B
C#
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);
|
|
}
|
|
}
|