I wrote my player code.

I'm proud of getting my player decided.
I'm stuck on trying to make the circle fall and increasing there speed.
So, far I have no new interest or idea.
This commit is contained in:
juddin2
2025-12-03 20:21:34 -05:00
parent ceac611ad2
commit ed8f4d7126
3 changed files with 24 additions and 2 deletions

View File

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