2019-06-30 20:58:30 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 16:43:03 +08:00
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-07-02 13:18:41 +08:00
|
|
|
using System.Collections.Generic;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Audio
|
|
|
|
{
|
2019-06-30 20:58:30 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Describes a gameplay sample.
|
|
|
|
/// </summary>
|
|
|
|
public class SampleInfo : ISampleInfo
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2020-10-29 15:32:03 +08:00
|
|
|
private readonly string[] sampleNames;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2020-10-29 15:32:03 +08:00
|
|
|
public SampleInfo(params string[] sampleNames)
|
2018-07-02 13:18:41 +08:00
|
|
|
{
|
2020-10-29 15:32:03 +08:00
|
|
|
this.sampleNames = sampleNames;
|
2018-07-02 13:35:03 +08:00
|
|
|
}
|
2018-07-02 13:18:41 +08:00
|
|
|
|
2020-10-29 15:32:03 +08:00
|
|
|
public IEnumerable<string> LookupNames => sampleNames;
|
2019-06-30 20:58:30 +08:00
|
|
|
|
2020-01-20 22:59:21 +08:00
|
|
|
public int Volume { get; } = 100;
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|