Add a base interface for applicable mods

This commit is contained in:
Dean Herbert
2017-12-31 04:09:51 +09:00
parent d18b6aada9
commit fea4e1ff68
9 changed files with 24 additions and 8 deletions

View File

@ -8,7 +8,7 @@ namespace osu.Game.Rulesets.Mods
/// <summary>
/// An interface for mods that make general adjustments to score processor.
/// </summary>
public interface IApplicableToScoreProcessor
public interface IApplicableToScoreProcessor : IApplicableMod
{
void ApplyToScoreProcessor(ScoreProcessor scoreProcessor);
}