1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-05 04:52:53 +08:00

Simplify constructor of SampleInfoList.

This commit is contained in:
Huo Yaoyuan 2017-05-08 19:30:55 +08:00
parent dff05bec79
commit 345f80b775

View File

@ -11,9 +11,8 @@ namespace osu.Game.Audio
{ {
} }
public SampleInfoList(IEnumerable<SampleInfo> elements) public SampleInfoList(IEnumerable<SampleInfo> elements) : base(elements)
{ {
AddRange(elements);
} }
} }
} }