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
|
|
|
|
|
{
|
2019-12-12 11:05:24 +00:00
|
|
|
|
public class LegacySkinConfiguration : SkinConfiguration
|
2019-10-09 20:04:34 +00:00
|
|
|
|
{
|
2019-11-06 16:58:07 +00:00
|
|
|
|
public const decimal LATEST_VERSION = 2.7m;
|
2019-10-09 20:04:34 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2019-11-24 01:36:34 +00:00
|
|
|
|
/// 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,
|
2020-08-03 18:40:13 +00:00
|
|
|
|
ComboPrefix,
|
|
|
|
|
ComboOverlap,
|
2020-07-29 07:34:09 +00:00
|
|
|
|
AnimationFramerate,
|
|
|
|
|
LayeredHitSounds,
|
2019-11-20 06:40:35 +00:00
|
|
|
|
}
|
2019-10-09 20:04:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|