Add new combo toggle to main composer interface

This commit is contained in:
Dean Herbert
2020-09-25 14:10:30 +09:00
parent bca774a0d4
commit e009264f10
4 changed files with 53 additions and 10 deletions

View File

@ -35,6 +35,8 @@ namespace osu.Game.Screens.Edit.Compose.Components
public IEnumerable<SelectionBlueprint> SelectedBlueprints => selectedBlueprints;
private readonly List<SelectionBlueprint> selectedBlueprints;
public int SelectedCount => selectedBlueprints.Count;
public IEnumerable<HitObject> SelectedHitObjects => selectedBlueprints.Select(b => b.HitObject);
private Drawable content;