Add support for initial d zero

This commit is contained in:
Kevin Trocolli
2023-04-23 04:38:28 -04:00
parent 58a088b9a4
commit d8c3ed5c01
31 changed files with 1125 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
from .base import IDZHandlerBase
from core.config import CoreConfig
from ..config import IDZConfig
from ..const import IDZConstants
class IDZHandlerSaveExpedition(IDZHandlerBase):
cmd_codes = [0x008c, 0x013f]
name = "save_expedition"
def __init__(self, core_cfg: CoreConfig, game_cfg: IDZConfig, version: int) -> None:
super().__init__(core_cfg, game_cfg, version)
def handle(self, data: bytes) -> bytearray:
return super().handle(data)