2018-08-03 15:11:57 +08:00
|
|
|
// 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.Objects.Drawables;
|
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>
|
|
|
|
/// Used as a nested hitobject to provide <see cref="TaikoStrongJudgement"/>s for <see cref="DrawableTaikoHitObject"/>s.
|
|
|
|
/// </summary>
|
2018-08-14 13:28:05 +08:00
|
|
|
public abstract class DrawableStrongNestedHit : DrawableTaikoHitObject
|
2018-08-03 15:11:57 +08:00
|
|
|
{
|
2018-08-03 15:46:03 +08:00
|
|
|
public readonly DrawableHitObject MainObject;
|
|
|
|
|
2018-08-14 13:28:05 +08:00
|
|
|
protected DrawableStrongNestedHit(StrongHitObject strong, DrawableHitObject mainObject)
|
2018-08-03 15:11:57 +08:00
|
|
|
: base(strong)
|
|
|
|
{
|
2018-08-03 15:46:03 +08:00
|
|
|
MainObject = mainObject;
|
2018-08-03 15:11:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void UpdateState(ArmedState state)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|