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