Improve xmldoc slightly

This commit is contained in:
Dean Herbert 2019-05-02 14:03:58 +09:00
parent 1817f7bc12
commit 6a4dc5e25c
1 changed files with 4 additions and 1 deletions

View File

@ -11,10 +11,13 @@ namespace osu.Game.Rulesets.Mods
/// </summary>
public interface IApplicableToScoreProcessor : IApplicableMod
{
/// <summary>
/// Provide a <see cref="ScoreProcessor"/> to a mod. Called once on initialisation of a play instance.
/// </summary>
void ApplyToScoreProcessor(ScoreProcessor scoreProcessor);
/// <summary>
/// Adjusts a rank value passed by <see cref="ScoreProcessor"/> and returns it.
/// Called every time a rank calculation is requested. Allows mods to adjust the final rank.
/// </summary>
ScoreRank AdjustRank(ScoreRank rank, double accuracy);
}