1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-12 11:12:54 +08:00

Add back BaseDifficulty with obsoletion counter to account for custom rulesets

This commit is contained in:
Dean Herbert 2022-01-19 12:33:56 +09:00
parent 7f65f3a47f
commit 2363130f8b

View File

@ -165,6 +165,14 @@ namespace osu.Game.Beatmaps
}
}
[Ignored]
[Obsolete("Use BeatmapInfo.Difficulty instead.")] // can be removed 20220719
public BeatmapDifficulty BaseDifficulty
{
get => Difficulty;
set => Difficulty = value;
}
[Ignored]
public string? Path => File?.Filename;