2019-10-10 04:04:34 +08: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 19:05:24 +08:00
|
|
|
|
public class LegacySkinConfiguration : SkinConfiguration
|
2019-10-10 04:04:34 +08:00
|
|
|
|
{
|
2019-11-07 00:58:07 +08:00
|
|
|
|
public const decimal LATEST_VERSION = 2.7m;
|
2019-10-10 04:04:34 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2019-11-24 09:36:34 +08:00
|
|
|
|
/// Legacy version of this skin.
|
2019-10-10 04:04:34 +08:00
|
|
|
|
/// </summary>
|
2019-10-10 04:33:25 +08:00
|
|
|
|
public decimal? LegacyVersion { get; internal set; }
|
2019-10-10 04:04:34 +08:00
|
|
|
|
|
2019-11-20 14:40:35 +08:00
|
|
|
|
public enum LegacySetting
|
|
|
|
|
{
|
|
|
|
|
Version,
|
2020-08-04 02:40:13 +08:00
|
|
|
|
ComboPrefix,
|
|
|
|
|
ComboOverlap,
|
2020-10-16 12:16:20 +08:00
|
|
|
|
ScorePrefix,
|
|
|
|
|
ScoreOverlap,
|
2020-07-29 15:34:09 +08:00
|
|
|
|
AnimationFramerate,
|
2020-09-28 18:24:30 +08:00
|
|
|
|
LayeredHitSounds
|
2019-11-20 14:40:35 +08:00
|
|
|
|
}
|
2019-10-10 04:04:34 +08:00
|
|
|
|
}
|
|
|
|
|
}
|