mirror of
https://github.com/osukey/osukey.git
synced 2025-05-09 07:37:22 +09:00
18 lines
304 B
C#
18 lines
304 B
C#
using System.ComponentModel;
|
|
|
|
namespace osu.Game.Overlays.Login
|
|
{
|
|
public enum UserAction
|
|
{
|
|
Online,
|
|
|
|
[Description(@"Do not disturb")]
|
|
DoNotDisturb,
|
|
|
|
[Description(@"Appear offline")]
|
|
AppearOffline,
|
|
|
|
[Description(@"Sign out")]
|
|
SignOut,
|
|
}
|
|
} |