StarRailCopilot/module/daemon/daemon_base.py
2023-05-14 15:48:34 +08:00

8 lines
201 B
Python

from module.base.base import ModuleBase
class DaemonBase(ModuleBase):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.device.disable_stuck_detection()