1
0
mirror of synced 2024-11-27 22:40:49 +01:00

constants.py: Add mapping between course names and letter IDs

This commit is contained in:
Viv 2023-06-02 16:35:05 -04:00
parent f4e8a70f01
commit 226060e6b6

View File

@ -104,3 +104,12 @@ DIFFICULTY_BYTES = {
'Ura': [64, 31],
'Edit': [64, 31]
}
COURSE_IDS = {
'Easy': 'e',
'Normal': 'n',
'Hard': 'h',
'Oni': 'm',
'Ura': 'x',
'Edit': 'x'
}