Merge branch 'master' into spectator

This commit is contained in:
Dean Herbert
2020-10-26 13:39:07 +09:00
17 changed files with 229 additions and 87 deletions

View File

@ -11,11 +11,13 @@ namespace osu.Game.Online.API
{
/// <summary>
/// The local user.
/// This is not thread-safe and should be scheduled locally if consumed from a drawable component.
/// </summary>
Bindable<User> LocalUser { get; }
/// <summary>
/// The current user's activity.
/// This is not thread-safe and should be scheduled locally if consumed from a drawable component.
/// </summary>
Bindable<UserActivity> Activity { get; }
@ -40,6 +42,10 @@ namespace osu.Game.Online.API
/// </summary>
string Endpoint { get; }
/// <summary>
/// The current connection state of the API.
/// This is not thread-safe and should be scheduled locally if consumed from a drawable component.
/// </summary>
IBindable<APIState> State { get; }
/// <summary>