mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-09 18:39: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()
|