osu/osu.Game/Online/Spectator/SpectatingUserState.cs

34 lines
801 B
C#
Raw Normal View History

2022-02-01 06:51:41 +00: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 11:29:49 +00:00
/// The spectated user is not yet playing.
2022-02-01 06:51:41 +00:00
/// </summary>
Idle,
/// <summary>
/// The spectated user is currently playing.
/// </summary>
Playing,
/// <summary>
2022-02-08 11:29:49 +00:00
/// The spectated user has passed gameplay.
2022-02-01 06:51:41 +00:00
/// </summary>
2022-02-08 11:29:49 +00:00
Passed,
2022-02-01 06:51:41 +00:00
/// <summary>
2022-02-08 11:29:49 +00:00
/// The spectator user has failed gameplay.
2022-02-01 06:51:41 +00:00
/// </summary>
Failed,
/// <summary>
2022-02-08 11:29:49 +00:00
/// The spectated user has quit gameplay.
2022-02-01 06:51:41 +00:00
/// </summary>
Quit
}
}