mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
21 lines
577 B
C#
21 lines
577 B
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer.Spectate
|
|
{
|
|
public enum MasterClockState
|
|
{
|
|
/// <summary>
|
|
/// The master clock is synchronised with at least one player clock.
|
|
/// </summary>
|
|
Synchronised,
|
|
|
|
/// <summary>
|
|
/// The master clock is too far ahead of any player clock and needs to slow down.
|
|
/// </summary>
|
|
TooFarAhead
|
|
}
|
|
}
|