mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 23:52:57 +08:00
Rename MaximumCombo to HighestCombo.
This commit is contained in:
parent
d71b284642
commit
ca0bea7534
@ -21,13 +21,13 @@ namespace osu.Game.Modes
|
||||
|
||||
public readonly BindableInt Combo = new BindableInt();
|
||||
|
||||
public readonly BindableInt MaximumCombo = new BindableInt();
|
||||
public readonly BindableInt HighestCombo = new BindableInt();
|
||||
|
||||
public readonly List<JudgementInfo> Judgements = new List<JudgementInfo>();
|
||||
|
||||
public ScoreProcessor()
|
||||
{
|
||||
Combo.ValueChanged += delegate { MaximumCombo.Value = Math.Max(MaximumCombo.Value, Combo.Value); };
|
||||
Combo.ValueChanged += delegate { HighestCombo.Value = Math.Max(HighestCombo.Value, Combo.Value); };
|
||||
}
|
||||
|
||||
public void AddJudgement(JudgementInfo judgement)
|
||||
|
Loading…
Reference in New Issue
Block a user