2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-08-05 15:22:10 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An interface for mods that make general adjustments to difficulty.
|
|
|
|
|
/// </summary>
|
2017-12-31 03:09:51 +08:00
|
|
|
|
public interface IApplicableToDifficulty : IApplicableMod
|
2017-08-05 15:22:10 +08:00
|
|
|
|
{
|
|
|
|
|
void ApplyToDifficulty(BeatmapDifficulty difficulty);
|
|
|
|
|
}
|
2017-12-31 03:09:51 +08:00
|
|
|
|
}
|