Make Apply virtual to further simplify application process

This commit is contained in:
Dean Herbert
2020-07-10 18:35:20 +09:00
parent 8aff828dfe
commit f872343bab
3 changed files with 13 additions and 11 deletions

View File

@ -75,7 +75,7 @@ namespace osu.Game.Rulesets.Judgements
this.Delay(FadeOutDelay).FadeOut(400);
}
public void Apply([NotNull] JudgementResult result, [CanBeNull] DrawableHitObject judgedObject)
public virtual void Apply([NotNull] JudgementResult result, [CanBeNull] DrawableHitObject judgedObject)
{
Result = result;
JudgedObject = judgedObject;