2019-03-04 12:24:19 +08: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 09:27:54 +08:00
|
|
|
|
2019-03-02 12:40:43 +08:00
|
|
|
using osu.Framework.Bindables;
|
2018-09-25 02:55:35 +08:00
|
|
|
|
2019-06-18 13:51:48 +08:00
|
|
|
namespace osu.Game.Tournament.Models
|
2018-09-25 02:55:35 +08:00
|
|
|
{
|
|
|
|
public class LadderEditorInfo
|
|
|
|
{
|
2019-06-18 13:57:05 +08:00
|
|
|
public readonly Bindable<TournamentMatch> Selected = new Bindable<TournamentMatch>();
|
2018-09-25 02:55:35 +08:00
|
|
|
}
|
|
|
|
}
|