mirror of
https://github.com/ppy/osu.git
synced 2026-05-18 14:10:33 +08:00
Introduce model to store path of stable osu!
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
// 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 complete data required to operate the tournament system.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class StableInfo
|
||||
{
|
||||
public Bindable<string> StablePath = new Bindable<string>(string.Empty);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user