1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 09:27:34 +08:00
osu-lazer/osu.Game/Online/Spectator/SpectatedUserState.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
960 B
C#
Raw Normal View History

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.
2022-06-17 15:37:17 +08:00
#nullable disable
2022-02-01 14:51:41 +08:00
namespace osu.Game.Online.Spectator
{
2022-02-09 11:09:04 +08:00
public enum SpectatedUserState
2022-02-01 14:51:41 +08:00
{
/// <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,
2022-02-08 19:29:53 +08:00
/// <summary>
/// The spectated user is currently paused. Unused for the time being.
/// </summary>
Paused,
2022-02-01 14:51:41 +08:00
/// <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-09 11:09:04 +08:00
/// The spectated 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
}
}