// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Modes.Catch.Judgements; using osu.Game.Modes.Catch.Objects; using osu.Game.Modes.UI; namespace osu.Game.Modes.Catch { internal class CatchScoreProcessor : ScoreProcessor { public CatchScoreProcessor() { } public CatchScoreProcessor(HitRenderer hitRenderer) : base(hitRenderer) { } protected override void UpdateCalculations(CatchJudgementInfo newJudgement) { } } }