detect and resolve battle tie with influence_token

This commit is contained in:
Maxime Réaux 2026-02-17 16:37:36 +01:00
parent 115ddf8d50
commit 818d2886f4
23 changed files with 808 additions and 172 deletions

View file

@ -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",