forked from Hay1tsme/artemis
18 lines
526 B
Python
18 lines
526 B
Python
|
import struct
|
||
|
|
||
|
from .base import IDZHandlerBase
|
||
|
from core.config import CoreConfig
|
||
|
from ..config import IDZConfig
|
||
|
from ..const import IDZConstants
|
||
|
|
||
|
class IDZHandleUpdateUIReport(IDZHandlerBase):
|
||
|
cmd_codes = [0x0084, 0x0084, 0x007e, 0x007e]
|
||
|
name = "update_ui_report"
|
||
|
|
||
|
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:
|
||
|
ret = super().handle(data)
|
||
|
return ret
|