2020-06-16 21:54:05 +08: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.
|
|
|
|
|
|
2020-09-29 13:09:51 +08:00
|
|
|
|
using osu.Framework.Graphics.Audio;
|
2020-06-16 21:54:05 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An interface for mods that make adjustments to a sample.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IApplicableToSample : IApplicableMod
|
|
|
|
|
{
|
2020-09-29 13:09:51 +08:00
|
|
|
|
void ApplyToSample(DrawableSample sample);
|
2020-06-16 21:54:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|