1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 06:07:25 +08:00
osu-lazer/osu.Game.Tournament/Screens/Ladder/Components/LadderEditorInfo.cs

15 lines
532 B
C#
Raw Normal View History

using System.Collections.Generic;
using osu.Framework.Configuration;
using osu.Game.Tournament.Components;
2018-09-25 03:21:48 +08:00
namespace osu.Game.Tournament.Screens.Ladder.Components
{
public class LadderEditorInfo
{
public readonly BindableBool EditingEnabled = new BindableBool();
public List<TournamentTeam> Teams = new List<TournamentTeam>();
public List<TournamentGrouping> Groupings = new List<TournamentGrouping>();
public readonly Bindable<MatchPairing> Selected = new Bindable<MatchPairing>();
}
}