This commit is contained in:
Auric Vente
2024-07-25 09:56:44 -06:00
parent 1c0d9c5dfc
commit fc63064441
2 changed files with 23 additions and 1 deletions

View File

@@ -561,3 +561,11 @@ class Game:
]
Window.alert("\n\n".join(lines))
@staticmethod
def slowdown() -> None:
Game.change_speed("slow")
@staticmethod
def change_speed(speed: str) -> None:
Window.speed.setCurrentText(speed.capitalize())