Fix judgement processors provided to mods while not completely loaded

This commit is contained in:
Salman Ahmed
2021-08-01 19:16:30 +03:00
parent 48b95ae250
commit ac930b8918
3 changed files with 12 additions and 6 deletions

View File

@ -8,7 +8,7 @@ namespace osu.Game.Rulesets.Mods
public interface IApplicableToHealthProcessor : IApplicableMod
{
/// <summary>
/// Provide a <see cref="HealthProcessor"/> to a mod. Called once on initialisation of a play instance.
/// Provides a ready <see cref="HealthProcessor"/> to a mod. Called once on initialisation of a play instance.
/// </summary>
void ApplyToHealthProcessor(HealthProcessor healthProcessor);
}