1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 23:27:24 +08:00
osu-lazer/osu.Game/Rulesets/UI/HealthDisplay.cs

25 lines
682 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
2017-03-02 17:45:20 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-01-10 16:01:53 +08:00
using osu.Framework.Configuration;
using osu.Framework.Graphics.Containers;
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.UI
2017-01-10 16:01:53 +08:00
{
2017-03-10 13:42:14 +08:00
public abstract class HealthDisplay : Container
2017-01-10 16:01:53 +08:00
{
public readonly BindableDouble Current = new BindableDouble
2017-02-16 21:44:21 +08:00
{
MinValue = 0,
MaxValue = 1
};
2017-01-18 13:40:13 +08:00
2017-03-10 12:02:50 +08:00
protected HealthDisplay()
2017-01-10 16:01:53 +08:00
{
Current.ValueChanged += newValue => SetHealth((float)newValue);
2017-01-18 13:40:13 +08:00
}
2017-01-10 16:01:53 +08:00
2017-03-10 12:58:17 +08:00
protected abstract void SetHealth(float value);
2017-01-10 16:01:53 +08:00
}
}