Add xmldoc to CalculateTimed()

This commit is contained in:
smoogipoo 2021-11-02 17:55:00 +09:00
parent 168a7a588b
commit 81aaef719f
1 changed files with 5 additions and 0 deletions

View File

@ -58,6 +58,11 @@ public DifficultyAttributes Calculate(params Mod[] mods)
return CreateDifficultyAttributes(Beatmap, playableMods, skills, clockRate);
}
/// <summary>
/// Calculates the difficulty of the beatmap and returns a set of <see cref="TimedDifficultyAttributes"/> representing the difficulty at every relevant time value in the beatmap.
/// </summary>
/// <param name="mods">The mods that should be applied to the beatmap.</param>
/// <returns>The set of <see cref="TimedDifficultyAttributes"/>.</returns>
public List<TimedDifficultyAttributes> CalculateTimed(params Mod[] mods)
{
preProcess(mods);