// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using osu.Framework.Bindables; namespace osu.Game.Tournament.Models { /// /// Holds the path to locate the osu! stable cutting-edge installation. /// [Serializable] public class StableInfo { public Bindable StablePath = new Bindable(string.Empty); } }