generated from mwc/project_game
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.
7 lines
182 B
Python
7 lines
182 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)
|
|
game.play() |