2017-04-26 05:40:40 +00:00
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace osu.Game.Audio
|
|
|
|
{
|
|
|
|
public class SampleInfoList : List<SampleInfo>
|
|
|
|
{
|
|
|
|
public SampleInfoList()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-05-08 11:30:55 +00:00
|
|
|
public SampleInfoList(IEnumerable<SampleInfo> elements) : base(elements)
|
2017-04-26 05:40:40 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2017-04-26 05:12:21 +00:00
|
|
|
}
|