2022-02-01 14:51:41 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. 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
|
|
|
|
{
|
|
|
|
/// <summary>
|
2022-02-08 19:29:49 +08:00
|
|
|
/// The spectated user is not yet playing.
|
2022-02-01 14:51:41 +08:00
|
|
|
/// </summary>
|
|
|
|
Idle,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The spectated user is currently playing.
|
|
|
|
/// </summary>
|
|
|
|
Playing,
|
|
|
|
|
|
|
|
/// <summary>
|
2022-02-08 19:29:49 +08:00
|
|
|
/// The spectated user has passed gameplay.
|
2022-02-01 14:51:41 +08:00
|
|
|
/// </summary>
|
2022-02-08 19:29:49 +08:00
|
|
|
Passed,
|
2022-02-01 14:51:41 +08:00
|
|
|
|
|
|
|
/// <summary>
|
2022-02-08 19:29:49 +08:00
|
|
|
/// The spectator user has failed gameplay.
|
2022-02-01 14:51:41 +08:00
|
|
|
/// </summary>
|
|
|
|
Failed,
|
|
|
|
|
|
|
|
/// <summary>
|
2022-02-08 19:29:49 +08:00
|
|
|
/// The spectated user has quit gameplay.
|
2022-02-01 14:51:41 +08:00
|
|
|
/// </summary>
|
|
|
|
Quit
|
|
|
|
}
|
|
|
|
}
|