2020-11-13 23:54:57 +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
|
|
|
|
|
2020-11-13 23:54:57 +08:00
|
|
|
using JetBrains.Annotations;
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.UI
|
|
|
|
{
|
|
|
|
internal interface IPooledHitObjectProvider
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Attempts to retrieve the poolable <see cref="DrawableHitObject"/> representation of a <see cref="HitObject"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="hitObject">The <see cref="HitObject"/> to retrieve the <see cref="DrawableHitObject"/> representation of.</param>
|
2020-12-03 18:46:42 +08:00
|
|
|
/// <param name="parent">The parenting <see cref="DrawableHitObject"/>, if any.</param>
|
2020-11-13 23:54:57 +08:00
|
|
|
/// <returns>The <see cref="DrawableHitObject"/> representing <see cref="HitObject"/>, or <c>null</c> if no poolable representation exists.</returns>
|
|
|
|
[CanBeNull]
|
2020-12-03 18:46:42 +08:00
|
|
|
DrawableHitObject GetPooledDrawableRepresentation([NotNull] HitObject hitObject, [CanBeNull] DrawableHitObject parent);
|
2020-11-13 23:54:57 +08:00
|
|
|
}
|
|
|
|
}
|