More xmldocs to hitobject/drawablehitobject

This commit is contained in:
smoogipoo
2018-08-06 10:55:38 +09:00
parent 5fd4ed2f4e
commit b35817c877
4 changed files with 32 additions and 8 deletions

View File

@ -108,10 +108,14 @@ namespace osu.Game.Rulesets.Objects
{
}
protected virtual Judgement CreateJudgement() => null;
protected void AddNested(HitObject hitObject) => nestedHitObjects.Value.Add(hitObject);
/// <summary>
/// Creates the <see cref="Judgement"/> that represents the scoring information for this <see cref="HitObject"/>.
/// May be null.
/// </summary>
protected virtual Judgement CreateJudgement() => null;
/// <summary>
/// Creates the <see cref="HitWindows"/> for this <see cref="HitObject"/>.
/// This can be null to indicate that the <see cref="HitObject"/> has no <see cref="HitWindows"/>.