13 lines
297 B
Python
13 lines
297 B
Python
|
|
class Performance:
|
||
|
|
basic = "Basic"
|
||
|
|
decent = "Decent"
|
||
|
|
good = "Good"
|
||
|
|
great = "Great"
|
||
|
|
galaxy = "Galaxy"
|
||
|
|
maximum = "Maximum"
|
||
|
|
tiers = {0: basic,
|
||
|
|
1: decent,
|
||
|
|
2: good,
|
||
|
|
3: great,
|
||
|
|
4: galaxy,
|
||
|
|
5: maximum}
|