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

@ -4,6 +4,7 @@
using osuTK;
using osu.Game.Audio;
using System.Collections.Generic;
using osu.Framework.Bindables;
namespace osu.Game.Rulesets.Objects.Legacy.Mania
{
@ -26,7 +27,7 @@ namespace osu.Game.Rulesets.Objects.Legacy.Mania
}
protected override HitObject CreateSlider(Vector2 position, bool newCombo, int comboOffset, PathControlPoint[] controlPoints, double? length, int repeatCount,
List<IList<HitSampleInfo>> nodeSamples)
IList<IList<HitSampleInfo>> nodeSamples)
{
return new ConvertSlider
{