Merge pull request #15255 from goodtrailer/node-samples-ilist

Change IHasRepeats.NodeSamples to IList from List
This commit is contained in:
Dean Herbert
2021-10-28 14:24:26 +09:00
committed by GitHub
13 changed files with 13 additions and 13 deletions

View File

@ -488,7 +488,7 @@ namespace osu.Game.Rulesets.Mania.Beatmaps.Patterns.Legacy
/// Retrieves the list of node samples that occur at time greater than or equal to <paramref name="time"/>.
/// </summary>
/// <param name="time">The time to retrieve node samples at.</param>
private List<IList<HitSampleInfo>> nodeSamplesAt(int time)
private IList<IList<HitSampleInfo>> nodeSamplesAt(int time)
{
if (!(HitObject is IHasPathWithRepeats curveData))
return null;