2022-04-28 19:00:38 +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-04-28 19:00:38 +08:00
|
|
|
using MessagePack;
|
|
|
|
|
|
|
|
namespace osu.Game.Online.Multiplayer
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A <see cref="MultiplayerCountdown"/> started by the server when clients being to load.
|
|
|
|
/// Indicates how long until gameplay will forcefully start, excluding any users which have not completed loading,
|
|
|
|
/// and forcing progression of any clients that are blocking load due to user interaction.
|
|
|
|
/// </summary>
|
|
|
|
[MessagePackObject]
|
|
|
|
public class ForceGameplayStartCountdown : MultiplayerCountdown
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|