Files
project_game/nav_game.py
mbhatti4 e273f1a954 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.
2025-12-13 23:38:01 -05:00

10 lines
206 B
Python

from retro.game import Game
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()