Add xmldoc to ctor also

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

View File

@ -21,6 +21,11 @@ public class TimedDifficultyAttributes : IComparable<TimedDifficultyAttributes>
/// </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;