1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 18:27:18 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
653 B
C#
Raw Normal View History

2020-03-23 10:47:27 +09: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 16:37:17 +09:00
#nullable disable
using osu.Framework.Localisation;
using osu.Game.Resources.Localisation.Web;
2020-03-23 10:47:27 +09:00
namespace osu.Game.Overlays.Dashboard.Friends
{
public enum OnlineStatus
{
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.StatusAll))]
2020-03-23 10:47:27 +09:00
All,
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.StatusOnline))]
Online,
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.StatusOffline))]
Offline
}
2020-03-23 10:47:27 +09:00
}