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