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

Convert comments to xmldoc

This commit is contained in:
Henry Lin 2022-03-03 13:03:53 +08:00
parent 09254407fe
commit ae71dcceeb

View File

@ -69,12 +69,15 @@ namespace osu.Game.Rulesets.Mods
private readonly List<double> recentRates = Enumerable.Repeat(1d, average_count).ToList();
// rate for a hit is calculated using the end time of another hit object earlier in time
// caching them here for easy access
/// <summary>
/// Rate for a hit is calculated using the end time of another hit object earlier in time,
/// caching them here for easy access
/// </summary>
private readonly Dictionary<HitObject, double> previousEndTimes = new Dictionary<HitObject, double>();
// record the value removed from recentRates when an object is hit
// for rewind support
/// <summary>
/// Record the value removed from <see cref="recentRates"/> when an object is hit for rewind support
/// </summary>
private readonly Dictionary<HitObject, double> dequeuedRates = new Dictionary<HitObject, double>();
public ModAdaptiveSpeed()