Migrate Rulesets.Mania to the new judgement system

This commit is contained in:
smoogipoo
2018-08-02 16:44:01 +09:00
parent 1b7b6f341c
commit cd70e5e30b
7 changed files with 49 additions and 30 deletions

View File

@ -0,0 +1,12 @@
// 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.Mania.Judgements;
namespace osu.Game.Rulesets.Mania.Objects
{
public class TailNote : Note
{
public override ManiaJudgement Judgement { get; } = new HoldNoteTailJudgement();
}
}