mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 14:31:16 +00:00
17 lines
258 B
Python
17 lines
258 B
Python
from dataclasses import dataclass
|
|
from typing import ClassVar
|
|
|
|
from module.ocr.keyword import Keyword
|
|
|
|
|
|
@dataclass
|
|
class DungeonNav(Keyword):
|
|
instances: ClassVar = {}
|
|
pass
|
|
|
|
|
|
@dataclass
|
|
class DungeonTab(Keyword):
|
|
instances: ClassVar = {}
|
|
pass
|