mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-05-01 18:49:04 +08:00
9 lines
205 B
Python
9 lines
205 B
Python
from module.reward.oil import RewardOil
|
|
from module.reward.mission import RewardMission
|
|
|
|
|
|
class Reward(RewardOil, RewardMission):
|
|
def run(self):
|
|
self.reward_oil()
|
|
self.reward_mission()
|