mirror of https://github.com/ppy/osu
Add xmldoc to CalculateTimed()
This commit is contained in:
parent
168a7a588b
commit
81aaef719f
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue