2021-04-19 19:37:06 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-04-19 19:37:06 +08:00
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Objects
|
|
|
|
{
|
2021-04-20 07:38:02 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Created for a <see cref="DrawableHitObject"/> when only <see cref="HitObject"/> is given
|
|
|
|
/// to make sure a <see cref="DrawableHitObject"/> is always associated with a <see cref="HitObjectLifetimeEntry"/>.
|
|
|
|
/// </summary>
|
2021-04-21 08:14:22 +08:00
|
|
|
internal class SyntheticHitObjectEntry : HitObjectLifetimeEntry
|
2021-04-19 19:37:06 +08:00
|
|
|
{
|
2021-04-21 09:02:50 +08:00
|
|
|
public SyntheticHitObjectEntry(HitObject hitObject)
|
|
|
|
: base(hitObject)
|
2021-04-19 19:37:06 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|