Introduce legacy skin configuration

This commit is contained in:
iiSaLMaN
2019-10-09 23:04:34 +03:00
parent 84c13b93fc
commit 003af19e3f
2 changed files with 36 additions and 2 deletions

View File

@ -0,0 +1,20 @@
// 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.
namespace osu.Game.Skinning
{
public class LegacySkinConfiguration : DefaultSkinConfiguration
{
public const double LATEST_VERSION = 2.5;
/// <summary>
/// Legacy version of this skin.
/// </summary>
public double? LegacyVersion { get; internal set; }
}
public enum LegacySkinConfigurations
{
Version,
}
}