osu/osu.Game.Rulesets.Osu/Judgements/OsuSliderTailJudgement.cs

15 lines
426 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.
2018-04-13 09:19:50 +00:00
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Osu.Judgements
{
public class OsuSliderTailJudgement : OsuJudgement
{
public override bool AffectsCombo => false;
2018-06-10 01:14:33 +00:00
2018-04-13 09:19:50 +00:00
protected override int NumericResultFor(HitResult result) => 0;
}
}