mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-23 09:01:45 +00: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()
|