generated from mwc/project_game
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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user