1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-15 17:39:24 +08:00
Files
Alas/module/handler/strategy.py

12 lines
317 B
Python
Raw Normal View History

2020-03-29 01:22:46 +08:00
from module.handler.assets import STRATEGY_OPEN_1
from module.handler.info_bar import InfoBarHandler
class StrategyHandler(InfoBarHandler):
def handle_opened_strategy_bar(self):
if self.appear_then_click(STRATEGY_OPEN_1):
self.device.sleep(0.5)
return True
return False