2021-09-20 03:09:03 +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-09-17 17:30:38 +08:00
|
|
|
using System.ComponentModel;
|
2022-01-28 12:53:48 +08:00
|
|
|
using osu.Framework.Localisation;
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2021-09-17 17:30:38 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Login
|
|
|
|
{
|
|
|
|
public enum UserAction
|
|
|
|
{
|
2022-01-28 12:53:48 +08:00
|
|
|
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.StatusOnline))]
|
2021-09-17 17:30:38 +08:00
|
|
|
Online,
|
|
|
|
|
|
|
|
[Description(@"Do not disturb")]
|
|
|
|
DoNotDisturb,
|
|
|
|
|
|
|
|
[Description(@"Appear offline")]
|
|
|
|
AppearOffline,
|
|
|
|
|
|
|
|
[Description(@"Sign out")]
|
|
|
|
SignOut,
|
|
|
|
}
|
2022-06-17 15:37:17 +08:00
|
|
|
}
|