1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-14 18:37:28 +08:00

Remove unused default value

This commit is contained in:
tsunyoku 2025-01-23 10:29:04 +00:00
parent 753e9ef7c7
commit 8f17a44976

View File

@ -38,7 +38,7 @@ namespace osu.Game.Rulesets.Taiko.Difficulty.Preprocessing.Rhythm.Data
/// The ratio of <see cref="HitObjectInterval"/> between this and the previous <see cref="SameRhythmGroupedHitObjects"/>. In the
/// case where one or both of the <see cref="HitObjectInterval"/> is undefined, this will have a value of 1.
/// </summary>
public double HitObjectIntervalRatio = 1;
public double HitObjectIntervalRatio;
/// <inheritdoc/>
public double Interval { get; private set; }