using System.Collections.Generic; using osu.Framework.Configuration; using osu.Game.Tournament.Components; namespace osu.Game.Tournament.Screens.Ladder.Components { public class LadderEditorInfo { public readonly BindableBool EditingEnabled = new BindableBool(); public List Teams = new List(); public List Groupings = new List(); public readonly Bindable Selected = new Bindable(); } }