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