9 lines
146 B
Python
9 lines
146 B
Python
from game import GameManager
|
|
import time
|
|
|
|
game = GameManager()
|
|
|
|
while game.game_on == True:
|
|
game.game_round()
|
|
|
|
game.get_screen().exitonclick() |