Files
python_bootcamp/021/main.py
Tanguy Deleplanque 670508261b day 21 - pong WIP
2025-07-15 17:43:03 +02:00

9 lines
176 B
Python

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