1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-09 18:39:04 +08:00
AzurLaneAutoScript/module/campaign/os_run.py

16 lines
399 B
Python
Raw Normal View History

from module.os.config import OSConfig
from module.os.map import OSMap
from module.os.map_operation import OSMapOperation
class OSCampaignRun(OSMapOperation):
campaign: OSMap
def load_campaign(self):
config = self.config.merge(OSConfig())
self.campaign = OSMap(config=config, device=self.device)
def run(self):
self.load_campaign()
self.campaign.run()