Update 'README.md'

Fixed mistake
This commit is contained in:
tforgione 2018-12-13 10:57:41 +00:00
parent 217997a263
commit f1aeb09e6f
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ def main():
game = Game(width, height, [
Player(0, 0, (255, 0, 0), KeyboardDecision(Direction.RIGHT)),
Player(width - 1, height - 1, (0, 255, 0), ConstantDecision(Direction.LEFT)),
Player(width - 1, height - 1, (0, 255, 0), MyDecision()),
])
window = Window(game, 20)