1
0
mirror of synced 2024-09-24 02:58:22 +02:00
artemis/titles/sao/const.py

16 lines
262 B
Python

from enum import Enum
class SaoConstants:
GAME_CODE = "SDEW"
CONFIG_NAME = "sao.yaml"
VER_SAO = 0
VERSION_NAMES = ("Sword Art Online Arcade")
@classmethod
def game_ver_to_string(cls, ver: int):
return cls.VERSION_NAMES[ver]