1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 07:47:25 +08:00

Add license header

This commit is contained in:
Ivan Pavluk 2018-11-29 09:19:41 +07:00
parent 17337e05a1
commit 00a243f7f2

View File

@ -1,11 +1,14 @@
using osu.Game.Rulesets.Scoring;
// 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.Scoring;
namespace osu.Game.Rulesets.Taiko.Judgements
{
class TaikoDrumRollJudgement : TaikoJudgement
{
public override bool AffectsCombo => false;
protected override int NumericResultFor(HitResult result) => 0;
}
}