mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-22 16:40:28 +00:00
9edd120538
* Add: Battle Pass Claim Rewards * Upd: comments of public methods * Fix: Break half way if not waiting for animation change finish * Fix: set dataclass repr to false * Add: Tasks BattlePass * Upd: break get_rewards into two loops
10 lines
186 B
Python
10 lines
186 B
Python
from dataclasses import dataclass
|
|
from typing import ClassVar
|
|
|
|
from module.ocr.keyword import Keyword
|
|
|
|
|
|
@dataclass(repr=False)
|
|
class BattlePassTab(Keyword):
|
|
instances: ClassVar = {}
|