1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 05:08:19 +08:00

Merge remote-tracking branch 'guoh064/gems_farming_gearcode'

This commit is contained in:
2024-07-23 12:53:31 +08:00
66 changed files with 390 additions and 33 deletions

View File

@@ -14,6 +14,7 @@ from module.base.timer import Timer
from module.config.utils import get_server_next_update
from module.device.app_control import AppControl
from module.device.control import Control
from module.device.input import Input
from module.device.screenshot import Screenshot
from module.exception import (
EmulatorNotRunningError,
@@ -66,7 +67,7 @@ def show_function_call():
logger.info('Function calls:' + ''.join(func_list))
class Device(Screenshot, Control, AppControl):
class Device(Screenshot, Control, AppControl, Input):
_screen_size_checked = False
detect_record = set()
click_record = collections.deque(maxlen=15)