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