2019-01-24 08:43:03 +00: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 07:11:57 +00:00
using osu.Game.Rulesets.Objects.Drawables ;
2018-08-03 07:56:46 +00:00
using osu.Game.Rulesets.Taiko.Judgements ;
2018-08-03 07:11:57 +00:00
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
{
2018-08-03 07:56:46 +00:00
/// <summary>
2020-12-14 20:47:31 +00:00
/// 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>
2018-08-14 05:28:05 +00:00
public abstract class DrawableStrongNestedHit : DrawableTaikoHitObject
2018-08-03 07:11:57 +00:00
{
2018-08-03 07:46:03 +00:00
public readonly DrawableHitObject MainObject ;
2020-12-13 11:18:29 +00:00
protected DrawableStrongNestedHit ( StrongNestedHitObject nestedHit , DrawableHitObject mainObject )
: base ( nestedHit )
2018-08-03 07:11:57 +00:00
{
2018-08-03 07:46:03 +00:00
MainObject = mainObject ;
2018-08-03 07:11:57 +00:00
}
}
}