2018-09-24 04:19:03 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
2018-10-14 04:19:50 +08:00
|
|
|
using System;
|
2018-09-24 22:30:37 +08:00
|
|
|
using System.Collections.Generic;
|
2018-10-13 06:10:13 +08:00
|
|
|
using osu.Framework.Configuration;
|
2018-09-24 22:30:37 +08:00
|
|
|
|
2018-09-24 04:19:03 +08:00
|
|
|
namespace osu.Game.Tournament.Screens.Ladder.Components
|
|
|
|
{
|
|
|
|
public class TournamentGrouping
|
|
|
|
{
|
2018-10-13 06:10:13 +08:00
|
|
|
public readonly Bindable<string> Name = new Bindable<string>();
|
|
|
|
public readonly Bindable<string> Description = new Bindable<string>();
|
2018-09-24 04:19:03 +08:00
|
|
|
|
2018-10-14 00:03:04 +08:00
|
|
|
public readonly BindableInt BestOf = new BindableInt(9) { Default = 9, MinValue = 3, MaxValue = 23 };
|
2018-09-24 22:30:37 +08:00
|
|
|
|
2018-10-14 04:19:50 +08:00
|
|
|
public readonly Bindable<DateTimeOffset> StartDate = new Bindable<DateTimeOffset>();
|
|
|
|
|
2018-09-24 22:30:37 +08:00
|
|
|
public List<int> Pairings = new List<int>();
|
2018-09-24 04:19:03 +08:00
|
|
|
}
|
|
|
|
}
|