mirror of
https://github.com/osukey/osukey.git
synced 2025-06-30 07:38:04 +09: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 Combo = new BindableInt();
|
||||||
|
|
||||||
public readonly BindableInt MaximumCombo = new BindableInt();
|
public readonly BindableInt HighestCombo = new BindableInt();
|
||||||
|
|
||||||
public readonly List<JudgementInfo> Judgements = new List<JudgementInfo>();
|
public readonly List<JudgementInfo> Judgements = new List<JudgementInfo>();
|
||||||
|
|
||||||
public ScoreProcessor()
|
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)
|
public void AddJudgement(JudgementInfo judgement)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user