mirror of
https://gitea.tendokyu.moe/Hay1tsme/artemis.git
synced 2026-02-04 22:57:32 +08:00
11 lines
301 B
Python
11 lines
301 B
Python
class DivaConstants():
|
|
GAME_CODE = "SBZV"
|
|
|
|
VER_PROJECT_DIVA_ARCADE = 0
|
|
VER_PROJECT_DIVA_ARCADE_FUTURE_TONE = 1
|
|
|
|
VERSION_NAMES = ("Project Diva Arcade", "Project Diva Arcade Future Tone")
|
|
|
|
@classmethod
|
|
def game_ver_to_string(cls, ver: int):
|
|
return cls.VERSION_NAMES[ver] |