2020-11-17 13:59:34 +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.
|
|
|
|
|
2020-11-18 14:51:09 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
2020-11-17 13:59:34 +08:00
|
|
|
namespace osu.Game.Rulesets.Judgements
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A skinnable judgement element which supports playing an animation from the current point in time.
|
|
|
|
/// </summary>
|
2020-11-18 14:51:09 +08:00
|
|
|
public interface IAnimatableJudgement : IDrawable
|
2020-11-17 13:59:34 +08:00
|
|
|
{
|
2020-11-20 15:14:38 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Start the animation for this judgement from the current point in time.
|
|
|
|
/// </summary>
|
2020-11-17 14:43:54 +08:00
|
|
|
void PlayAnimation();
|
2020-11-20 15:14:38 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Get proxied content which should be displayed above all hitobjects.
|
|
|
|
/// </summary>
|
2022-11-09 12:44:59 +08:00
|
|
|
Drawable? GetAboveHitObjectsProxiedContent();
|
2020-11-17 13:59:34 +08:00
|
|
|
}
|
|
|
|
}
|