Use one constant for STABLE_CONFIG location string

This commit is contained in:
Shivam
2020-05-20 16:30:38 +02:00
parent a0a54efd4e
commit e018d07441
5 changed files with 10 additions and 11 deletions

View File

@ -2,6 +2,7 @@
// See the LICENCE file in the repository root for full licence text.
using System;
using Newtonsoft.Json;
using osu.Framework.Bindables;
namespace osu.Game.Tournament.Models
@ -13,5 +14,8 @@ namespace osu.Game.Tournament.Models
public class StableInfo
{
public Bindable<string> StablePath = new Bindable<string>(string.Empty);
[JsonIgnore]
public const string STABLE_CONFIG = "tournament/stable.json";
}
}