Add xmldoc on State

This commit is contained in:
smoogipoo 2020-11-26 23:42:05 +09:00
parent c744db1b57
commit aa4da2a5f8
1 changed files with 6 additions and 0 deletions

View File

@ -128,6 +128,12 @@ public abstract class DrawableHitObject : SkinReloadableDrawable
private readonly Bindable<ArmedState> state = new Bindable<ArmedState>();
/// <summary>
/// The state of this <see cref="DrawableHitObject"/>.
/// </summary>
/// <remarks>
/// For pooled hitobjects, <see cref="ApplyCustomUpdateState"/> is recommended to be used instead for better editor/rewinding support.
/// </remarks>
public IBindable<ArmedState> State => state;
/// <summary>