mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 06:25:24 +00:00
035ab0a778
* Upd: return incomplete quests only * Fix: Typo * Fix: Use split_and_pair_button
15 lines
245 B
Python
15 lines
245 B
Python
from dataclasses import dataclass
|
|
from typing import ClassVar
|
|
|
|
from module.ocr.keyword import Keyword
|
|
|
|
|
|
@dataclass
|
|
class DailyQuest(Keyword):
|
|
instances: ClassVar = {}
|
|
|
|
|
|
@dataclass
|
|
class DailyQuestState(Keyword):
|
|
instances: ClassVar = {}
|