1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 18:27:18 +08:00
osu-lazer/osu.Game/Skinning/LegacySkinConfiguration.cs

29 lines
756 B
C#
Raw Normal View History

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