1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 19:50:31 +08:00

Remove unnecessary public prefix in interface method

This commit is contained in:
Salman Ahmed
2022-03-31 01:50:46 +03:00
Unverified
parent f4184cb6fe
commit 6874cdf0c8
+1 -1
View File
@@ -25,7 +25,7 @@ namespace osu.Game.Rulesets.Mods
/// For callers that want to receive a directly usable <see cref="Score"/> instance,
/// the <see cref="ModExtensions.CreateScoreFromReplayData"/> extension method is provided for convenience.
/// </remarks>
public ModReplayData CreateReplayData(IBeatmap beatmap, IReadOnlyList<Mod> mods);
ModReplayData CreateReplayData(IBeatmap beatmap, IReadOnlyList<Mod> mods);
}
/// <summary>