mirror of https://github.com/ppy/osu
Improve xmldoc slightly
This commit is contained in:
parent
1817f7bc12
commit
6a4dc5e25c
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue