mirror of
https://gitea.tendokyu.moe/Hay1tsme/artemis.git
synced 2025-12-14 08:06:25 +08:00
17 lines
342 B
Python
17 lines
342 B
Python
class IDACConstants():
|
|
GAME_CODE = "SDGT"
|
|
|
|
CONFIG_NAME = "idac.yaml"
|
|
|
|
VER_IDAC_SEASON_1 = 0
|
|
VER_IDAC_SEASON_2 = 1
|
|
|
|
VERSION_STRING = (
|
|
"Initial D THE ARCADE Season 1",
|
|
"Initial D THE ARCADE Season 2",
|
|
)
|
|
|
|
@classmethod
|
|
def game_ver_to_string(cls, ver: int):
|
|
return cls.VERSION_STRING[ver]
|