// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Rulesets.Judgements; using osu.Game.Rulesets.Scoring; namespace osu.Game.Rulesets.Catch.Judgements { public class CatchBananaShowerJudgement : CatchJudgement { public override bool AffectsCombo => false; public CatchBananaShowerJudgement() { Result = HitResult.Perfect; } protected override int NumericResultFor(HitResult result) => 0; protected override float HealthIncreaseFor(HitResult result) => 0; } }