Files
project_game/nav_game.py
juddin2 8769519960 I made sure my circles are falling continously and as the player doges the score increases.
I'm proud of making the circles fall from the top one at a time.
I was stuck on making the circle fall.
2025-12-04 21:14:43 -05:00

16 lines
355 B
Python

from retro.game import Game
from player import Player
from circle import Circle
board_size = (100, 25)
player = Player(board_size)
circle= Circle ((board_size[0] // 2, 0))
def during_turn(game):
pass
game = Game([player, circle], {"score": 0, "fall_speed": 1}, board_size=board_size)
game.during_turn = during_turn
game.play()