// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable namespace osu.Game.Online.Spectator { public enum SpectatedUserState { /// /// The spectated user is not yet playing. /// Idle, /// /// The spectated user is currently playing. /// Playing, /// /// The spectated user is currently paused. Unused for the time being. /// Paused, /// /// The spectated user has passed gameplay. /// Passed, /// /// The spectated user has failed gameplay. /// Failed, /// /// The spectated user has quit gameplay. /// Quit } }