1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 18:27:18 +08:00

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

22 lines
531 B
C#
Raw Normal View History

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