Add map pool editing functionality to round editor

This commit is contained in:
Dean Herbert
2019-06-18 16:10:23 +09:00
parent 412778c71a
commit 4baadf6319
4 changed files with 191 additions and 6 deletions

View File

@ -20,7 +20,7 @@ namespace osu.Game.Tournament.Models
public readonly BindableInt BestOf = new BindableInt(9) { Default = 9, MinValue = 3, MaxValue = 23 };
[JsonProperty]
public readonly List<RoundBeatmap> Beatmaps = new List<RoundBeatmap>();
public readonly BindableList<RoundBeatmap> Beatmaps = new BindableList<RoundBeatmap>();
public readonly Bindable<DateTimeOffset> StartDate = new Bindable<DateTimeOffset>();