Hook up naively.

This commit is contained in:
Dean Herbert
2017-01-10 17:21:07 +08:00
parent 7eab50b989
commit 1392cdfb9a
3 changed files with 4 additions and 1 deletions

View File

@ -27,6 +27,7 @@ namespace osu.Game.Modes.UI
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.White,
Scale = new Vector2(0, 1),
},
};
}

View File

@ -63,7 +63,7 @@ namespace osu.Game.Modes.UI
processor.TotalScore.ValueChanged += delegate { ScoreCounter?.Set((ulong)processor.TotalScore.Value); };
processor.Accuracy.ValueChanged += delegate { AccuracyCounter?.Set((float)processor.Accuracy.Value); };
processor.Combo.ValueChanged += delegate { ComboCounter?.Set((ulong)processor.Combo.Value); };
processor.Health.ValueChanged += delegate { HPDisplay?.Set((ulong)processor.Combo.Value); };
processor.Health.ValueChanged += delegate { HPDisplay?.Set(processor.Health.Value); };
}
}
}