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

@ -37,7 +37,7 @@ namespace osu.Game.Rulesets.Objects.Legacy.Osu
}
protected override HitObject CreateSlider(Vector2 position, bool newCombo, int comboOffset, PathControlPoint[] controlPoints, double? length, int repeatCount,
List<IList<HitSampleInfo>> nodeSamples)
IList<IList<HitSampleInfo>> nodeSamples)
{
newCombo |= forceNewCombo;
comboOffset += extraComboOffset;