day 22 (actually, there's no 21) - finished Pong

This commit is contained in:
Tanguy Deleplanque
2025-07-16 12:47:31 +02:00
parent 670508261b
commit 697d53f836
5 changed files with 52 additions and 9 deletions

7
022/main.py Normal file
View File

@ -0,0 +1,7 @@
from game import GameManager
from paddle import Paddle
game = GameManager()
while game.game_on == True:
game.game_round()
game.screen.exitonclick()