Implement Taiko score processing.

This commit is contained in:
smoogipooo
2017-03-23 19:24:23 +09:00
parent 768bc2bb5f
commit 322a78830e
2 changed files with 246 additions and 2 deletions

View File

@ -122,7 +122,7 @@ namespace osu.Game.Modes
{
Judgements.Capacity = hitRenderer.Beatmap.HitObjects.Count;
hitRenderer.OnJudgement += addJudgement;
hitRenderer.OnJudgement += AddJudgement;
ComputeTargets(hitRenderer.Beatmap);
@ -139,7 +139,7 @@ namespace osu.Game.Modes
/// Adds a judgement to this ScoreProcessor.
/// </summary>
/// <param name="judgement">The judgement to add.</param>
private void addJudgement(TJudgement judgement)
protected void AddJudgement(TJudgement judgement)
{
Judgements.Add(judgement);