1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-25 04:03:21 +08:00

Added ignore hit object

This commit is contained in:
Tim Oliver 2020-04-11 17:20:37 +08:00
parent 9d0d2ef68a
commit 78492dbba8

View File

@ -0,0 +1,12 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Rulesets.Judgements;
namespace osu.Game.Rulesets.Taiko.Objects
{
public class IgnoreHit : Hit
{
public override Judgement CreateJudgement() => new IgnoreJudgement();
}
}