1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 17:32:54 +08:00

Add english descriptions

This commit is contained in:
smoogipoo 2021-10-20 17:50:02 +09:00
parent 116ce09e49
commit 0b8edb0812

View File

@ -1,13 +1,18 @@
// 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.
using System.ComponentModel;
namespace osu.Game.Online.Multiplayer
{
public enum QueueModes
{
// used for osu-web deserialization so names shouldn't be changed.
[Description("Host pick")]
HostPick,
[Description("Karaoke")]
Karaoke,
}
}