Files
python_bootcamp/022/main.py
2025-07-16 12:47:31 +02:00

7 lines
152 B
Python

from game import GameManager
from paddle import Paddle
game = GameManager()
while game.game_on == True:
game.game_round()
game.screen.exitonclick()