mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 06:19:38 +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.Taiko.Judgements;
|
|
using osu.Game.Modes.Taiko.Objects;
|
|
using osu.Game.Modes.UI;
|
|
|
|
namespace osu.Game.Modes.Taiko
|
|
{
|
|
internal class TaikoScoreProcessor : ScoreProcessor<TaikoBaseHit, TaikoJudgementInfo>
|
|
{
|
|
public TaikoScoreProcessor()
|
|
{
|
|
}
|
|
|
|
public TaikoScoreProcessor(HitRenderer<TaikoBaseHit, TaikoJudgementInfo> hitRenderer)
|
|
: base(hitRenderer)
|
|
{
|
|
}
|
|
|
|
protected override void UpdateCalculations(TaikoJudgementInfo newJudgement)
|
|
{
|
|
}
|
|
}
|
|
}
|