2019-01-24 16:43:03 +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.
|
2018-10-28 13:40:19 +08:00
|
|
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
|
|
|
/// <summary>
|
2019-08-01 11:35:17 +08:00
|
|
|
/// Interface for a <see cref="Mod"/> that applies changes to a <see cref="Beatmap"/> after conversion and post-processing has completed.
|
2018-10-28 13:40:19 +08:00
|
|
|
/// </summary>
|
2019-08-01 11:35:17 +08:00
|
|
|
public interface IApplicableToBeatmap : IApplicableMod
|
2018-10-28 13:40:19 +08:00
|
|
|
{
|
|
|
|
/// <summary>
|
2019-08-01 11:35:17 +08:00
|
|
|
/// Applies this <see cref="IApplicableToBeatmap"/> to an <see cref="IBeatmap"/>.
|
2018-10-28 13:40:19 +08:00
|
|
|
/// </summary>
|
2019-08-01 11:35:17 +08:00
|
|
|
/// <param name="beatmap">The <see cref="IBeatmap"/> to apply to.</param>
|
|
|
|
void ApplyToBeatmap(IBeatmap beatmap);
|
2018-10-28 13:40:19 +08:00
|
|
|
}
|
|
|
|
}
|