2019-01-24 17:43:03 +09: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 01:40:19 -04:00
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
#nullable disable
|
|
|
|
|
2018-10-28 01:40:19 -04:00
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
|
|
|
/// <summary>
|
2019-08-01 12:35:17 +09: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 01:40:19 -04:00
|
|
|
/// </summary>
|
2019-08-01 12:35:17 +09:00
|
|
|
public interface IApplicableToBeatmap : IApplicableMod
|
2018-10-28 01:40:19 -04:00
|
|
|
{
|
|
|
|
/// <summary>
|
2019-08-01 12:35:17 +09:00
|
|
|
/// Applies this <see cref="IApplicableToBeatmap"/> to an <see cref="IBeatmap"/>.
|
2018-10-28 01:40:19 -04:00
|
|
|
/// </summary>
|
2019-08-01 12:35:17 +09:00
|
|
|
/// <param name="beatmap">The <see cref="IBeatmap"/> to apply to.</param>
|
|
|
|
void ApplyToBeatmap(IBeatmap beatmap);
|
2018-10-28 01:40:19 -04:00
|
|
|
}
|
|
|
|
}
|