1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 22:47:20 +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.

39 lines
941 B
C#
Raw Normal View History

2022-02-01 15:51:41 +09: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
{
2022-02-09 12:09:04 +09:00
public enum SpectatedUserState
2022-02-01 15:51:41 +09:00
{
/// <summary>
2022-02-08 20:29:49 +09:00
/// The spectated user is not yet playing.
2022-02-01 15:51:41 +09:00
/// </summary>
Idle,
/// <summary>
/// The spectated user is currently playing.
/// </summary>
Playing,
2022-02-08 20:29:53 +09:00
/// <summary>
/// The spectated user is currently paused. Unused for the time being.
/// </summary>
Paused,
2022-02-01 15:51:41 +09:00
/// <summary>
2022-02-08 20:29:49 +09:00
/// The spectated user has passed gameplay.
2022-02-01 15:51:41 +09:00
/// </summary>
2022-02-08 20:29:49 +09:00
Passed,
2022-02-01 15:51:41 +09:00
/// <summary>
2022-02-09 12:09:04 +09:00
/// The spectated user has failed gameplay.
2022-02-01 15:51:41 +09:00
/// </summary>
Failed,
/// <summary>
2022-02-08 20:29:49 +09:00
/// The spectated user has quit gameplay.
2022-02-01 15:51:41 +09:00
/// </summary>
Quit
}
}