1
0
Fork 0
artemis/titles/idz/handlers/unknown.py

14 lines
371 B
Python
Raw Normal View History

2023-04-23 08:38:28 +00:00
import struct
from .base import IDZHandlerBase
from core.config import CoreConfig
from ..config import IDZConfig
2023-04-23 08:38:28 +00:00
class IDZHandlerUnknown(IDZHandlerBase):
cmd_codes = [0x00AD, 0x00AD, 0x00A2, 0x00A2]
2023-04-23 08:38:28 +00:00
name = "unknown"
def __init__(self, core_cfg: CoreConfig, game_cfg: IDZConfig, version: int) -> None:
super().__init__(core_cfg, game_cfg, version)