// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Game.Rulesets.Judgements; namespace osu.Game.Screens.Play.HUD { /// /// An interface providing a set of methods to update a health display. /// public interface IHealthDisplay : IDrawable { /// /// The current health to be displayed. /// Bindable Current { get; } /// /// Flash the display for a specified result type. /// /// The result type. void Flash(JudgementResult result); } }