1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 22:37:24 +08:00

24 lines
773 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2019-02-21 19:04:31 +09:00
using osu.Framework.Bindables;
using osu.Game.Rulesets.Judgements;
2018-11-14 14:29:22 +09:00
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Osu.Judgements;
namespace osu.Game.Rulesets.Osu.Objects
{
public class SliderTailCircle : SliderCircle
{
2018-11-14 14:29:22 +09:00
private readonly IBindable<SliderPath> pathBindable = new Bindable<SliderPath>();
public SliderTailCircle(Slider slider)
{
pathBindable.BindTo(slider.PathBindable);
pathBindable.BindValueChanged(_ => Position = slider.EndPosition);
}
2018-08-06 11:50:18 +09:00
public override Judgement CreateJudgement() => new OsuSliderTailJudgement();
}
}