osu/osu.Game.Tournament/Models/LadderEditorInfo.cs

13 lines
366 B
C#
Raw Normal View History

2023-06-22 16:37:25 +00:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2019-03-04 04:24:19 +00:00
// 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;
2019-06-18 05:51:48 +00:00
namespace osu.Game.Tournament.Models
{
public class LadderEditorInfo
{
2019-06-18 05:57:05 +00:00
public readonly Bindable<TournamentMatch> Selected = new Bindable<TournamentMatch>();
}
}