2019-01-24 16:43:03 +08:00
// 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.
2018-08-03 15:11:57 +08:00
2020-12-15 06:21:19 +08:00
using JetBrains.Annotations ;
2018-08-03 15:56:46 +08:00
using osu.Game.Rulesets.Taiko.Judgements ;
2018-08-03 15:11:57 +08:00
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
{
2018-08-03 15:56:46 +08:00
/// <summary>
2020-12-15 04:47:31 +08:00
/// Used as a nested hitobject to provide <see cref="TaikoStrongJudgement"/>s for <see cref="DrawableTaikoStrongableHitObject{TObject,TStrongNestedObject}"/>s.
2018-08-03 15:56:46 +08:00
/// </summary>
2018-08-14 13:28:05 +08:00
public abstract class DrawableStrongNestedHit : DrawableTaikoHitObject
2018-08-03 15:11:57 +08:00
{
2020-12-15 06:21:19 +08:00
public new DrawableTaikoHitObject ParentHitObject = > ( DrawableTaikoHitObject ) base . ParentHitObject ;
2018-08-03 15:46:03 +08:00
2020-12-15 06:21:19 +08:00
protected DrawableStrongNestedHit ( [ CanBeNull ] StrongNestedHitObject nestedHit )
2020-12-13 19:18:29 +08:00
: base ( nestedHit )
2018-08-03 15:11:57 +08:00
{
}
}
}