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

Refactor: Gacha module

This commit is contained in:
LmeSzinc
2021-10-03 00:36:14 +08:00
parent fe46b8ad93
commit 77ace49c2e
13 changed files with 228 additions and 24 deletions

View File

@@ -129,6 +129,14 @@ class AzurLaneAutoScript:
from module.shop.shop_reward import RewardShop
RewardShop(config=self.config, device=self.device).run()
def shipyard(self):
from module.shipyard.shipyard_reward import RewardShipyard
RewardShipyard(config=self.config, device=self.device).run()
def gacha(self):
from module.gacha.gacha_reward import RewardGacha
RewardGacha(config=self.config, device=self.device).run()
def daily(self):
from module.daily.daily import Daily
Daily(config=self.config, device=self.device).run()