Files
python_bootcamp/020/main.py
Tanguy Deleplanque df22e55f4b day 20
2025-07-03 15:18:56 +02:00

9 lines
146 B
Python

from game import GameManager
import time
game = GameManager()
while game.game_on == True:
game.game_round()
game.get_screen().exitonclick()