adding partial Sword Art Online Arcade support

This commit is contained in:
2023-05-26 13:45:20 -04:00
parent 7ed294e9f7
commit 72594fef31
13 changed files with 2709 additions and 0 deletions

15
titles/sao/const.py Normal file
View File

@ -0,0 +1,15 @@
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]