diff --git a/osu.Game/Rulesets/Mods/ICreateReplayData.cs b/osu.Game/Rulesets/Mods/ICreateReplayData.cs index b022949345..1d07b95e7a 100644 --- a/osu.Game/Rulesets/Mods/ICreateReplayData.cs +++ b/osu.Game/Rulesets/Mods/ICreateReplayData.cs @@ -5,6 +5,7 @@ using System.Collections.Generic; using osu.Game.Beatmaps; using osu.Game.Online.API.Requests.Responses; using osu.Game.Replays; +using osu.Game.Scoring; using osu.Game.Users; namespace osu.Game.Rulesets.Mods @@ -17,9 +18,13 @@ namespace osu.Game.Rulesets.Mods /// /// Create replay data. /// - /// - /// - /// + /// The beatmap to create replay data for. + /// The mods to take into account when creating the replay data. + /// A structure, containing the generated replay data. + /// + /// For callers that want to receive a directly usable instance, + /// the extension method is provided for convenience. + /// public ModReplayData CreateReplayData(IBeatmap beatmap, IReadOnlyList mods); }