1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 10:10:23 +08:00

Fix up taiko judgement creation

This commit is contained in:
smoogipoo
2018-08-03 16:11:38 +09:00
Unverified
parent 482526135f
commit fa3c919e2e
5 changed files with 5 additions and 41 deletions
@@ -1,7 +1,9 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Taiko.Judgements;
namespace osu.Game.Rulesets.Taiko.Objects
{
@@ -28,6 +30,8 @@ namespace osu.Game.Rulesets.Taiko.Objects
/// </summary>
public bool IsStrong;
protected override Judgement CreateJudgement() => new TaikoJudgement();
protected override HitWindows CreateHitWindows() => new TaikoHitWindows();
}
}