day 21 - pong WIP
This commit is contained in:
9
021/main.py
Normal file
9
021/main.py
Normal file
@ -0,0 +1,9 @@
|
||||
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()
|
||||
Reference in New Issue
Block a user