mirror of
https://github.com/osukey/osukey.git
synced 2025-06-09 05:19:11 +09:00
Convert comments to xmldoc
This commit is contained in:
parent
09254407fe
commit
ae71dcceeb
@ -69,12 +69,15 @@ namespace osu.Game.Rulesets.Mods
|
|||||||
|
|
||||||
private readonly List<double> recentRates = Enumerable.Repeat(1d, average_count).ToList();
|
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
|
/// <summary>
|
||||||
// caching them here for easy access
|
/// 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>();
|
private readonly Dictionary<HitObject, double> previousEndTimes = new Dictionary<HitObject, double>();
|
||||||
|
|
||||||
// record the value removed from recentRates when an object is hit
|
/// <summary>
|
||||||
// for rewind support
|
/// 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>();
|
private readonly Dictionary<HitObject, double> dequeuedRates = new Dictionary<HitObject, double>();
|
||||||
|
|
||||||
public ModAdaptiveSpeed()
|
public ModAdaptiveSpeed()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user