Skip to content

Commit

Permalink
Update OsuDifficultyAttributes.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDark98 authored Jan 11, 2025
1 parent 306c477 commit 08f8256
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion osu.Game.Rulesets.Osu/Difficulty/OsuDifficultyAttributes.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

using System.Collections.Generic;
Expand All @@ -19,12 +19,24 @@ public class OsuDifficultyAttributes : DifficultyAttributes
[JsonProperty("aim_difficulty")]
public double AimDifficulty { get; set; }

/// <summary>
/// The difficulty factor corresponding to the aim skill.
/// </summary>
[JsonProperty("aim_difficulty_factor")]
public double AimDifficultyFactor { get; set; }

/// <summary>
/// The difficulty corresponding to the speed skill.
/// </summary>
[JsonProperty("speed_difficulty")]
public double SpeedDifficulty { get; set; }

/// <summary>
/// The difficulty factor corresponding to the speed skill.
/// </summary>
[JsonProperty("speed_difficulty_factor")]
public double SpeedDifficultyFactor { get; set; }

/// <summary>
/// The number of clickable objects weighted by difficulty.
/// Related to <see cref="SpeedDifficulty"/>
Expand Down

0 comments on commit 08f8256

Please sign in to comment.