This commit is contained in:
Tanguy Deleplanque
2025-07-03 15:18:56 +02:00
parent eaebdba4bb
commit df22e55f4b
4 changed files with 163 additions and 0 deletions

9
020/main.py Normal file
View File

@ -0,0 +1,9 @@
from game import GameManager
import time
game = GameManager()
while game.game_on == True:
game.game_round()
game.get_screen().exitonclick()