Add map pool beatmaps to groupings

This commit is contained in:
Dean Herbert
2018-10-14 18:00:28 +09:00
parent 0c4ea4beb1
commit 63fbe4e946
3 changed files with 17 additions and 1 deletions

View File

@ -0,0 +1,11 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Tournament.Screens.Ladder.Components
{
public class GroupingBeatmap
{
public int ID;
public string Mods;
}
}

View File

@ -14,6 +14,8 @@ namespace osu.Game.Tournament.Screens.Ladder.Components
public readonly BindableInt BestOf = new BindableInt(9) { Default = 9, MinValue = 3, MaxValue = 23 };
public readonly List<GroupingBeatmap> Beatmaps = new List<GroupingBeatmap>();
public readonly Bindable<DateTimeOffset> StartDate = new Bindable<DateTimeOffset>();
public List<int> Pairings = new List<int>();