1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 09:07:52 +08:00

Make LegacyScoreDecoder.PopulateMaximumStatistics() public

For `osu-tools` consumption.
This commit is contained in:
Bartłomiej Dach 2024-01-29 21:42:38 +01:00
parent b3919bff56
commit 6888cda02c
No known key found for this signature in database

View File

@ -180,7 +180,7 @@ namespace osu.Game.Scoring.Legacy
/// </summary>
/// <param name="score">The score to populate the statistics of.</param>
/// <param name="workingBeatmap">The corresponding <see cref="WorkingBeatmap"/>.</param>
internal static void PopulateMaximumStatistics(ScoreInfo score, WorkingBeatmap workingBeatmap)
public static void PopulateMaximumStatistics(ScoreInfo score, WorkingBeatmap workingBeatmap)
{
Debug.Assert(score.BeatmapInfo != null);