generated from mwc/project_game
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.
10 lines
206 B
Python
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()
|