// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Game.Online.Spectator { public enum SpectatingUserState { /// /// The spectated user has not yet played. /// Idle, /// /// The spectated user is currently playing. /// Playing, /// /// The spectated user has successfully completed gameplay. /// Completed, /// /// The spectator user has failed during gameplay. /// Failed, /// /// The spectated user has quit during gameplay. /// Quit } }