2019-01-24 08:43:03 +00:00
|
|
|
|
// 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.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-08-02 11:36:38 +00:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Judgements;
|
2019-09-06 06:24:00 +00:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects
|
|
|
|
|
{
|
2020-10-02 05:20:55 +00:00
|
|
|
|
public class SliderRepeat : SliderEndCircle
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2020-10-02 06:21:52 +00:00
|
|
|
|
public SliderRepeat(Slider slider)
|
|
|
|
|
: base(slider)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-19 05:42:02 +00:00
|
|
|
|
public override Judgement CreateJudgement() => new SliderRepeatJudgement();
|
2020-03-19 05:26:24 +00:00
|
|
|
|
|
2020-03-19 05:42:02 +00:00
|
|
|
|
public class SliderRepeatJudgement : OsuJudgement
|
2020-03-19 05:26:24 +00:00
|
|
|
|
{
|
2020-09-29 05:35:43 +00:00
|
|
|
|
public override HitResult MaxResult => HitResult.LargeTickHit;
|
2020-03-19 05:26:24 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|