Im proud im understanding what im doing

Im stuck on testing my code
Im worried my code isnt doing what i want it to but i cant test it to see
This commit is contained in:
mollychi
2025-12-05 19:50:01 -05:00
parent af69f8ce27
commit 4f3655867f
7 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
from retro.game import Game
from frog import Frog
from obstacle_spawner import ObstacleSpawner
board_size = (25, 25)
board_size = (25, 25)
froggy = Frog(board_size)
spawner = ObstacleSpawner()
game = Game([froggy, spawner], {"score": 0}, board_size=board_size)
game.play()