Add the ability to toggle new combo state from composer context menu

This commit is contained in:
Dean Herbert
2020-09-23 16:38:16 +09:00
parent 7efaa37447
commit a1ec167982
3 changed files with 63 additions and 1 deletions

View File

@ -81,7 +81,7 @@ namespace osu.Game.Tests.Gameplay
private class TestHitObjectWithCombo : ConvertHitObject, IHasComboInformation
{
public bool NewCombo { get; } = false;
public bool NewCombo { get; set; } = false;
public int ComboOffset { get; } = 0;
public Bindable<int> IndexInCurrentComboBindable { get; } = new Bindable<int>();