Change IHasRepeats.NodeSamples to IList from List

This commit is contained in:
goodtrailer
2021-10-23 01:59:07 -07:00
parent dbb1bafb28
commit 4440b9ca11
13 changed files with 14 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;