2021-10-14 07:34:23 +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.
|
|
|
|
|
2021-10-20 08:50:02 +00:00
|
|
|
using System.ComponentModel;
|
|
|
|
|
2021-10-20 11:52:16 +00:00
|
|
|
namespace osu.Game.Online.Multiplayer.Queueing
|
2021-10-14 07:34:23 +00:00
|
|
|
{
|
2021-11-16 05:53:10 +00:00
|
|
|
public enum QueueMode
|
2021-10-14 07:34:23 +00:00
|
|
|
{
|
2021-10-20 05:51:59 +00:00
|
|
|
// used for osu-web deserialization so names shouldn't be changed.
|
|
|
|
|
2021-10-22 03:39:48 +00:00
|
|
|
[Description("Host only")]
|
|
|
|
HostOnly,
|
2021-10-20 08:50:02 +00:00
|
|
|
|
2021-10-22 03:39:48 +00:00
|
|
|
[Description("Free-for-all")]
|
|
|
|
FreeForAll,
|
|
|
|
|
|
|
|
[Description("Fair rotate")]
|
|
|
|
FairRotate
|
2021-10-14 07:34:23 +00:00
|
|
|
}
|
|
|
|
}
|