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-04-13 09:19:50 +00:00
|
|
|
|
|
2017-08-05 07:22:10 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-08-05 07:22:10 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An interface for mods that make general adjustments to difficulty.
|
|
|
|
|
/// </summary>
|
2017-12-30 19:09:51 +00:00
|
|
|
|
public interface IApplicableToDifficulty : IApplicableMod
|
2017-08-05 07:22:10 +00:00
|
|
|
|
{
|
2019-12-26 05:52:08 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Called post beatmap conversion. Can be used to apply changes to difficulty attributes.
|
|
|
|
|
/// </summary>
|
2019-12-26 10:33:59 +00:00
|
|
|
|
/// <param name="difficulty">The difficulty to mutate.</param>
|
2017-08-05 07:22:10 +00:00
|
|
|
|
void ApplyToDifficulty(BeatmapDifficulty difficulty);
|
|
|
|
|
}
|
2017-12-30 19:09:51 +00:00
|
|
|
|
}
|