forked from Hay1tsme/artemis
13 lines
332 B
Python
13 lines
332 B
Python
class DivaConstants():
|
|
GAME_CODE = "SBZV"
|
|
|
|
CONFIG_NAME = "diva.yaml"
|
|
|
|
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] |