1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 04:07:26 +08:00
osu-lazer/osu.Game.Tournament/Models/LadderEditorInfo.cs

13 lines
363 B
C#
Raw Normal View History

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;
2019-06-18 13:51:48 +08:00
namespace osu.Game.Tournament.Models
{
public class LadderEditorInfo
{
2019-06-18 13:57:05 +08:00
public readonly Bindable<TournamentMatch> Selected = new Bindable<TournamentMatch>();
}
}