2019-03-04 04:24:19 +00:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-09-25 01:27:54 +00:00
|
|
|
|
2019-03-02 04:40:43 +00:00
|
|
|
using osu.Framework.Bindables;
|
2018-09-24 18:55:35 +00:00
|
|
|
|
2019-06-18 05:51:48 +00:00
|
|
|
namespace osu.Game.Tournament.Models
|
2018-09-24 18:55:35 +00:00
|
|
|
{
|
|
|
|
public class LadderEditorInfo
|
|
|
|
{
|
2019-06-18 05:57:05 +00:00
|
|
|
public readonly Bindable<TournamentMatch> Selected = new Bindable<TournamentMatch>();
|
2018-09-24 18:55:35 +00:00
|
|
|
}
|
|
|
|
}
|