osu/osu.Game/Audio/SampleInfo.cs

25 lines
610 B
C#
Raw Normal View History

2019-06-30 12:58:30 +00:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 09:19:50 +00:00
using System.Collections.Generic;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Audio
{
2019-06-30 12:58:30 +00:00
/// <summary>
/// Describes a gameplay sample.
/// </summary>
public class SampleInfo : ISampleInfo
2018-04-13 09:19:50 +00:00
{
2019-06-30 12:58:30 +00:00
private readonly string sampleName;
2018-04-13 09:19:50 +00:00
2019-06-30 12:58:30 +00:00
public SampleInfo(string sampleName)
{
2019-06-30 12:58:30 +00:00
this.sampleName = sampleName;
}
2019-06-30 12:58:30 +00:00
public IEnumerable<string> LookupNames => new[] { sampleName };
2020-01-20 14:59:21 +00:00
public int Volume { get; } = 100;
2018-04-13 09:19:50 +00:00
}
}