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

25 lines
678 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;
namespace osu.Game.Modes.UI
{
internal 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
{
2017-03-10 12:58:17 +08:00
Current.ValueChanged += (s, e) => SetHealth((float)Current);
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
}
}