Further support for null judgements.

This commit is contained in:
smoogipooo
2017-08-21 15:35:16 +09:00
parent aa5afc30ef
commit 7a5708ce92
3 changed files with 6 additions and 3 deletions

View File

@ -58,10 +58,10 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
};
}
protected override TaikoJudgement CreateJudgement() => new TaikoJudgement();
protected override TaikoJudgement CreateJudgement() => null;
protected override void UpdateState(ArmedState state)
{
}
}
}
}