2020-03-23 09:47:27 +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.
|
|
|
|
|
2021-07-01 03:16:21 +08:00
|
|
|
using osu.Framework.Localisation;
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
|
|
|
|
2020-03-23 09:47:27 +08:00
|
|
|
namespace osu.Game.Overlays.Dashboard.Friends
|
|
|
|
{
|
|
|
|
public enum OnlineStatus
|
|
|
|
{
|
2021-07-31 06:38:54 +08:00
|
|
|
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.StatusAll))]
|
2020-03-23 09:47:27 +08:00
|
|
|
All,
|
2021-07-01 03:16:21 +08:00
|
|
|
|
2021-07-31 06:38:54 +08:00
|
|
|
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.StatusOnline))]
|
|
|
|
Online,
|
2021-07-01 03:16:21 +08:00
|
|
|
|
2021-07-31 06:38:54 +08:00
|
|
|
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.StatusOffline))]
|
|
|
|
Offline
|
2021-07-01 03:16:21 +08:00
|
|
|
}
|
2020-03-23 09:47:27 +08:00
|
|
|
}
|