mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 15:22:55 +08:00
Introduce model to store path of stable osu!
This commit is contained in:
parent
43c42cdf31
commit
08bb5cbcbf
17
osu.Game.Tournament/Models/StableInfo.cs
Normal file
17
osu.Game.Tournament/Models/StableInfo.cs
Normal file
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user