mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 23:47:32 +08:00
26 lines
726 B
C#
26 lines
726 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// 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<CatchBaseHit, CatchJudgementInfo>
|
|
{
|
|
public CatchScoreProcessor()
|
|
{
|
|
}
|
|
|
|
public CatchScoreProcessor(HitRenderer<CatchBaseHit, CatchJudgementInfo> hitRenderer)
|
|
: base(hitRenderer)
|
|
{
|
|
}
|
|
|
|
protected override void UpdateCalculations(CatchJudgementInfo newJudgement)
|
|
{
|
|
}
|
|
}
|
|
}
|