osu/osu.Game/Overlays/Dashboard/Friends/OnlineStatus.cs

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