This commit is contained in:
Auric Vente
2024-07-21 10:56:49 -06:00
parent 9a2c1bdcc5
commit 0ea97aa03d
3 changed files with 27 additions and 2 deletions

View File

@@ -231,10 +231,12 @@ class Game:
if speed == "fast":
delay = Config.loop_delay_fast
elif speed == "normal":
delay = Config.loop_delay_normal
elif speed == "slow":
delay = Config.loop_delay_slow
else:
delay = Config.loop_delay_normal
return
Game.timer = QTimer()
Game.timer.timeout.connect(Game.get_status)