mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-07-01 20:26:27 +00:00
10 lines
136 B
Python
10 lines
136 B
Python
from enum import IntEnum
|
|
|
|
|
|
class ArcaeaRatingClass(IntEnum):
|
|
PAST = 0
|
|
PRESENT = 1
|
|
FUTURE = 2
|
|
BEYOND = 3
|
|
ETERNAL = 4
|