Add/improve xmldoc

This commit is contained in:
smoogipoo 2020-08-31 13:33:41 +09:00
parent 8151aa6ed8
commit acbeb5406f
2 changed files with 5 additions and 1 deletions

View File

@ -36,6 +36,10 @@ protected override float SamplePlaybackPosition
}
}
/// <summary>
/// Whether this <see cref="DrawableManiaHitObject"/> can be hit, given a time value.
/// If non-null, judgements will be ignored (resulting in a shake) whilst the function returns false.
/// </summary>
public Func<DrawableHitObject, double, bool> CheckHittable;
protected DrawableManiaHitObject(ManiaHitObject hitObject)

View File

@ -22,7 +22,7 @@ public class DrawableOsuHitObject : DrawableHitObject<OsuHitObject>
protected override float SamplePlaybackPosition => HitObject.X / OsuPlayfield.BASE_SIZE.X;
/// <summary>
/// Whether this <see cref="DrawableOsuHitObject"/> can be hit.
/// Whether this <see cref="DrawableOsuHitObject"/> can be hit, given a time value.
/// If non-null, judgements will be ignored (resulting in a shake) whilst the function returns false.
/// </summary>
public Func<DrawableHitObject, double, bool> CheckHittable;