Initial D THE ARCADE S2 support added

This commit is contained in:
2023-10-01 03:54:23 +02:00
parent 38c1c31cf5
commit e0265485ff
28 changed files with 244427 additions and 29 deletions

16
titles/idac/base.py Normal file
View File

@ -0,0 +1,16 @@
import logging
from core.config import CoreConfig
from titles.idac.config import IDACConfig
from titles.idac.const import IDACConstants
from titles.idac.database import IDACData
class IDACBase:
def __init__(self, cfg: CoreConfig, game_cfg: IDACConfig) -> None:
self.core_cfg = cfg
self.game_config = game_cfg
self.game = IDACConstants.GAME_CODE
self.version = IDACConstants.VER_IDAC_SEASON_1
self.data = IDACData(cfg)
self.logger = logging.getLogger("idac")