osu/osu.Game/Online/Multiplayer/ForceGameplayStartCountdown.cs

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

20 lines
688 B
C#
Raw Normal View History

2022-04-28 11:00:38 +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.
2022-06-17 07:37:17 +00:00
#nullable disable
2022-04-28 11:00:38 +00: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]
2022-09-05 11:13:23 +00:00
public sealed class ForceGameplayStartCountdown : MultiplayerCountdown
2022-04-28 11:00:38 +00:00
{
}
}