1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 00:42:55 +08:00

Add xmldoc to ctor also

This commit is contained in:
smoogipoo 2021-11-02 17:19:14 +09:00
parent efba7a9c4d
commit 168a7a588b

View File

@ -21,6 +21,11 @@ namespace osu.Game.Rulesets.Difficulty
/// </summary>
public readonly DifficultyAttributes Attributes;
/// <summary>
/// Creates new <see cref="TimedDifficultyAttributes"/>.
/// </summary>
/// <param name="time">The non-clock-adjusted time value at which the attributes take effect.</param>
/// <param name="attributes">The attributes.</param>
public TimedDifficultyAttributes(double time, DifficultyAttributes attributes)
{
Time = time;