I just started creating my game board.

One sucess I am proud of is that I have an idea on how I want my board to look like.
I am stuck on running my game on retro. For some reason an error always pops up even though I installed retro.
I worries about having my player move to catch the circle falling from above.
I dont have any new idea as of now.
This commit is contained in:
juddin2
2025-11-29 21:03:01 -05:00
parent 4a9bcf1d5d
commit ceac611ad2

5
nav_game.py Normal file
View File

@@ -0,0 +1,5 @@
from retro.game import Game
board_size = (25, 25)
game = Game([], {"score": 0}, board_size=board_size)
game.play()