osu/osu.Game/Skinning/LegacySkinConfiguration.cs

21 lines
541 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-11-06 16:58:07 +00:00
public const decimal LATEST_VERSION = 2.7m;
2019-10-09 20:04:34 +00:00
/// <summary>
/// Legacy version of this skin.
2019-10-09 20:04:34 +00:00
/// </summary>
2019-10-09 20:33:25 +00:00
public decimal? LegacyVersion { get; internal set; }
2019-10-09 20:04:34 +00:00
2019-11-20 06:40:35 +00:00
public enum LegacySetting
{
Version,
}
2019-10-09 20:04:34 +00:00
}
}