2019-01-24 17:43:03 +09: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 18:19:50 +09:00
|
|
|
|
2017-12-30 21:23:18 +01:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
2017-05-24 20:45:01 +09:00
|
|
|
namespace osu.Game.Rulesets.Mania.Judgements
|
|
|
|
{
|
|
|
|
public class HoldNoteTickJudgement : ManiaJudgement
|
|
|
|
{
|
2020-09-29 14:29:43 +09:00
|
|
|
public override HitResult MaxResult => HitResult.LargeTickHit;
|
2017-05-24 20:45:01 +09:00
|
|
|
}
|
2017-12-30 21:23:18 +01:00
|
|
|
}
|