In this submit, i wokred on making the game more to how i want it.

I was able to get it to move and start from the center.
My next goal is to move around and pick up "food" for my snake.
This commit is contained in:
mbhatti4
2025-12-13 23:38:01 -05:00
parent 9142ec7bfe
commit e273f1a954
3 changed files with 36 additions and 20 deletions

View File

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