osu/osu.Game.Rulesets.Taiko/Objects/Drawables/DrawableStrongNestedHit.cs

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

22 lines
811 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.
using JetBrains.Annotations;
2018-08-03 07:56:46 +00:00
using osu.Game.Rulesets.Taiko.Judgements;
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
{
2018-08-03 07:56:46 +00:00
/// <summary>
/// Used as a nested hitobject to provide <see cref="TaikoStrongJudgement"/>s for <see cref="DrawableTaikoStrongableHitObject{TObject,TStrongNestedObject}"/>s.
2018-08-03 07:56:46 +00:00
/// </summary>
public abstract class DrawableStrongNestedHit : DrawableTaikoHitObject
{
public new DrawableTaikoHitObject ParentHitObject => (DrawableTaikoHitObject)base.ParentHitObject;
2018-08-03 07:46:03 +00:00
protected DrawableStrongNestedHit([CanBeNull] StrongNestedHitObject nestedHit)
2020-12-13 11:18:29 +00:00
: base(nestedHit)
{
}
}
}