mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-27 02:27:12 +00:00
1921142369
- 独立出处理物品掉落和舰娘掉落的方法
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()
|