mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 18:23:04 +08:00
18 lines
490 B
C#
18 lines
490 B
C#
// 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;
|
|
using osu.Framework.Bindables;
|
|
|
|
namespace osu.Game.Tournament.Models
|
|
{
|
|
/// <summary>
|
|
/// Holds the path to locate the osu! stable cutting-edge installation.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class StableInfo
|
|
{
|
|
public Bindable<string> StablePath = new Bindable<string>(string.Empty);
|
|
}
|
|
}
|