Add XMLDocs to difficulty attribute properties

This commit is contained in:
Dan Balasescu
2022-02-16 14:09:19 +09:00
parent 74a0e002dc
commit 84e82ef5e4
5 changed files with 75 additions and 1 deletions

View File

@ -9,6 +9,12 @@ namespace osu.Game.Rulesets.Catch.Difficulty
{
public class CatchDifficultyAttributes : DifficultyAttributes
{
/// <summary>
/// The perceived approach rate inclusive of rate-adjusting mods (DT/HT/etc).
/// </summary>
/// <remarks>
/// Rate-adjusting mods don't directly affect the approach rate difficulty value, but have a perceived effect as a result of adjusting audio timing.
/// </remarks>
[JsonProperty("approach_rate")]
public double ApproachRate { get; set; }