forked from Hay1tsme/artemis
Initial D THE ARCADE S2 support added
This commit is contained in:
16
titles/idac/base.py
Normal file
16
titles/idac/base.py
Normal 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")
|
Reference in New Issue
Block a user