2021-11-04 17:02:44 +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-01-28 12:53:48 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2021-11-04 17:02:44 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests.Responses
|
|
|
|
|
{
|
|
|
|
|
public enum APIPlayStyle
|
|
|
|
|
{
|
2022-01-28 12:53:48 +08:00
|
|
|
|
[LocalisableDescription(typeof(CommonStrings), nameof(CommonStrings.DeviceKeyboard))]
|
2021-11-04 17:02:44 +08:00
|
|
|
|
Keyboard,
|
|
|
|
|
|
2022-01-28 12:53:48 +08:00
|
|
|
|
[LocalisableDescription(typeof(CommonStrings), nameof(CommonStrings.DeviceMouse))]
|
2021-11-04 17:02:44 +08:00
|
|
|
|
Mouse,
|
|
|
|
|
|
2022-01-28 12:53:48 +08:00
|
|
|
|
[LocalisableDescription(typeof(CommonStrings), nameof(CommonStrings.DeviceTablet))]
|
2021-11-04 17:02:44 +08:00
|
|
|
|
Tablet,
|
|
|
|
|
|
2022-01-28 12:53:48 +08:00
|
|
|
|
[LocalisableDescription(typeof(CommonStrings), nameof(CommonStrings.DeviceTouch))]
|
2021-11-04 17:02:44 +08:00
|
|
|
|
Touch,
|
|
|
|
|
}
|
|
|
|
|
}
|