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

10
titles/sao/__init__.py Normal file
View File

@ -0,0 +1,10 @@
from .index import SaoServlet
from .const import SaoConstants
from .database import SaoData
from .read import SaoReader
index = SaoServlet
database = SaoData
reader = SaoReader
game_codes = [SaoConstants.GAME_CODE]
current_schema_version = 1