2021-10-14 15:34:23 +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
|
|
|
|
|
2021-10-20 16:50:02 +08:00
|
|
|
using System.ComponentModel;
|
|
|
|
|
2021-11-19 13:46:53 +08:00
|
|
|
namespace osu.Game.Online.Multiplayer
|
2021-10-14 15:34:23 +08:00
|
|
|
{
|
2021-11-16 13:53:10 +08:00
|
|
|
public enum QueueMode
|
2021-10-14 15:34:23 +08:00
|
|
|
{
|
2021-10-20 13:51:59 +08:00
|
|
|
// used for osu-web deserialization so names shouldn't be changed.
|
|
|
|
|
2021-10-22 11:39:48 +08:00
|
|
|
[Description("Host only")]
|
|
|
|
HostOnly,
|
2021-10-20 16:50:02 +08:00
|
|
|
|
2021-11-19 17:28:43 +08:00
|
|
|
[Description("All players")]
|
|
|
|
AllPlayers,
|
2021-10-22 11:39:48 +08:00
|
|
|
|
2021-11-19 17:28:43 +08:00
|
|
|
[Description("All players (round robin)")]
|
2021-11-19 17:42:34 +08:00
|
|
|
AllPlayersRoundRobin
|
2021-10-14 15:34:23 +08:00
|
|
|
}
|
|
|
|
}
|