detect and resolve battle tie with influence_token
This commit is contained in:
parent
115ddf8d50
commit
818d2886f4
23 changed files with 808 additions and 172 deletions
|
|
@ -1,6 +1,7 @@
|
|||
from enum import StrEnum
|
||||
from enum import Enum, auto
|
||||
from pathlib import Path
|
||||
from typing import Dict
|
||||
|
||||
from PyQt6.QtCore import Qt
|
||||
from PyQt6.QtGui import QIcon
|
||||
|
|
@ -40,7 +41,7 @@ class IconName(str, Enum):
|
|||
|
||||
|
||||
class Icons:
|
||||
_cache: dict[str, QIcon] = {}
|
||||
_cache: Dict[str, QIcon] = {}
|
||||
|
||||
_paths = {
|
||||
IconName.UNDO: "arrow-curve-180-left",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue