Add xmldoc covering usage restrictions

This commit is contained in:
Dean Herbert
2020-10-08 18:25:40 +09:00
parent f90ac2e76c
commit 0967db768f

View File

@ -98,7 +98,11 @@ namespace osu.Game
/// <summary>
/// Whether the local user is currently interacting with the game in a way that should not be interrupted.
/// </summary>
public readonly Bindable<bool> LocalUserPlaying = new BindableBool();
/// <remarks>
/// This is exclusively managed by <see cref="Player"/>. If other components are mutating this state, a more
/// resilient method should be used to ensure correct state.
/// </remarks>
public Bindable<bool> LocalUserPlaying = new BindableBool();
protected OsuScreenStack ScreenStack;