2019-01-24 16:43: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.
|
2018-06-28 16:34:04 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-12-14 18:51:27 +08:00
|
|
|
|
namespace osu.Game.Online.Leaderboards
|
2018-06-28 12:04:39 +08:00
|
|
|
|
{
|
2022-01-31 00:12:03 +08:00
|
|
|
|
public enum LeaderboardState
|
2018-06-28 12:04:39 +08:00
|
|
|
|
{
|
2022-01-31 00:12:03 +08:00
|
|
|
|
Success,
|
|
|
|
|
Retrieving,
|
2018-06-28 12:04:39 +08:00
|
|
|
|
NetworkFailure,
|
2022-03-02 13:10:59 +08:00
|
|
|
|
BeatmapUnavailable,
|
|
|
|
|
RulesetUnavailable,
|
2019-09-05 10:56:21 +08:00
|
|
|
|
NoneSelected,
|
2018-06-28 12:04:39 +08:00
|
|
|
|
NoScores,
|
|
|
|
|
NotLoggedIn,
|
|
|
|
|
NotSupporter,
|
|
|
|
|
}
|
2018-06-28 16:34:04 +08:00
|
|
|
|
}
|