2020-07-21 17:22:37 +08: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.
|
|
|
|
|
|
|
|
using osu.Game.Audio;
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects
|
|
|
|
{
|
|
|
|
public class SpinnerBonusTick : SpinnerTick
|
|
|
|
{
|
|
|
|
public SpinnerBonusTick()
|
|
|
|
{
|
2020-12-01 14:37:51 +08:00
|
|
|
Samples.Add(new HitSampleInfo("spinnerbonus"));
|
2020-07-21 17:22:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public override Judgement CreateJudgement() => new OsuSpinnerBonusTickJudgement();
|
|
|
|
|
|
|
|
public class OsuSpinnerBonusTickJudgement : OsuSpinnerTickJudgement
|
|
|
|
{
|
2020-09-29 13:35:43 +08:00
|
|
|
public override HitResult MaxResult => HitResult.LargeBonus;
|
2020-07-21 17:22:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|