2020-05-16 08:57:58 +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.
|
|
|
|
|
|
|
|
using System;
|
2020-05-20 22:30:38 +08:00
|
|
|
using Newtonsoft.Json;
|
2020-05-16 08:57:58 +08:00
|
|
|
using osu.Framework.Bindables;
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament.Models
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-05-18 04:26:42 +08:00
|
|
|
/// Holds the path to locate the osu! stable cutting-edge installation.
|
2020-05-16 08:57:58 +08:00
|
|
|
/// </summary>
|
|
|
|
[Serializable]
|
|
|
|
public class StableInfo
|
|
|
|
{
|
|
|
|
public Bindable<string> StablePath = new Bindable<string>(string.Empty);
|
2020-05-20 22:30:38 +08:00
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
public const string STABLE_CONFIG = "tournament/stable.json";
|
2020-05-16 08:57:58 +08:00
|
|
|
}
|
|
|
|
}
|