1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 10:33:30 +08:00

Adjust xmldoc slightly

This commit is contained in:
Dean Herbert 2024-02-18 17:54:29 +08:00
parent 060b01eee8
commit 9655e8c48a
No known key found for this signature in database

View File

@ -171,11 +171,10 @@ namespace osu.Game.Rulesets.Objects
private Judgement judgement;
/// <summary>
/// Creates the <see cref="Judgement"/> that represents the scoring information for this <see cref="HitObject"/>.
/// Should be overridden to create a <see cref="Judgement"/> that represents the scoring information for this <see cref="HitObject"/>.
/// </summary>
/// <remarks>
/// Use <see cref="Judgement"/> to avoid unnecessary allocations.
/// This method has been left public for compatibility reasons and eventually will be made protected.
/// For read access, use <see cref="Judgement"/> to avoid unnecessary allocations.
/// </remarks>
[NotNull]
public virtual Judgement CreateJudgement() => new Judgement();