mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 07:27:25 +08:00
25 lines
615 B
C#
25 lines
615 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; set; } = 100;
|
|
}
|
|
}
|