1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00
osu-lazer/osu.Game/Audio/SampleInfo.cs
2020-01-20 23:59:21 +09:00

25 lines
610 B
C#

// 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.
using System.Collections.Generic;
namespace osu.Game.Audio
{
/// <summary>
/// Describes a gameplay sample.
/// </summary>
public class SampleInfo : ISampleInfo
{
private readonly string sampleName;
public SampleInfo(string sampleName)
{
this.sampleName = sampleName;
}
public IEnumerable<string> LookupNames => new[] { sampleName };
public int Volume { get; } = 100;
}
}