osu/osu.Game/Skinning/LegacySkinConfiguration.cs

21 lines
536 B
C#
Raw Normal View History

2019-10-09 20:04:34 +00:00
// 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
{
2019-10-09 20:33:25 +00:00
public const decimal LATEST_VERSION = 2.5m;
2019-10-09 20:04:34 +00:00
/// <summary>
/// Legacy version of this skin.
/// </summary>
2019-10-09 20:33:25 +00:00
public decimal? LegacyVersion { get; internal set; }
2019-10-09 20:04:34 +00:00
}
public enum LegacySkinConfigurations
{
Version,
}
}