generated from mwc/project_game
7 lines
141 B
Python
7 lines
141 B
Python
from retro.game import Game
|
|
from retro.agent import ArrowKeyAgent
|
|
|
|
agent = ArrowKeyAgent()
|
|
state = {}
|
|
game = Game([agent], state)
|
|
game.play() |