Add tiered level badge colouring

This commit is contained in:
StanR
2023-01-18 16:25:11 +03:00
parent 43a037c189
commit 24ed84aad0
4 changed files with 146 additions and 4 deletions

View File

@ -0,0 +1,17 @@
// 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.
namespace osu.Game.Scoring
{
public enum RankingTier
{
Iron,
Bronze,
Silver,
Gold,
Platinum,
Rhodium,
Radiant,
Lustrous
}
}