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

13 lines
357 B
C#
Raw Normal View History

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