1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/Objects/StrongNestedHitObject.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
751 B
C#
Raw Normal View History

// 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.
2022-06-17 15:37:17 +08:00
#nullable disable
using osu.Game.Rulesets.Judgements;
2019-09-06 14:24:00 +08:00
using osu.Game.Rulesets.Scoring;
using osu.Game.Rulesets.Taiko.Judgements;
namespace osu.Game.Rulesets.Taiko.Objects
{
2020-12-13 20:04:44 +08:00
/// <summary>
/// Base type for nested strong hits.
2020-12-15 04:46:02 +08:00
/// Used by <see cref="TaikoStrongableHitObject"/>s to represent their strong bonus scoring portions.
2020-12-13 20:04:44 +08:00
/// </summary>
2020-12-13 19:59:46 +08:00
public abstract class StrongNestedHitObject : TaikoHitObject
{
2018-08-06 10:50:18 +08:00
public override Judgement CreateJudgement() => new TaikoStrongJudgement();
2019-10-09 18:08:31 +08:00
protected override HitWindows CreateHitWindows() => HitWindows.Empty;
}
}