1<?php
2
3// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
4// See the LICENCE file in the repository root for full licence text.
5
6namespace App\Enums;
7
8enum ScoreRank: string
9{
10 case A = 'A';
11 case B = 'B';
12 case C = 'C';
13 case D = 'D';
14 case F = 'F';
15 case S = 'S';
16 case SH = 'SH';
17 case X = 'X';
18 case XH = 'XH';
19}