lab_retro/retro/examples/debug.py

7 lines
127 B
Python

from retro.game import Game
from retro.agent import ArrowKeyAgent
game = Game([ArrowKeyAgent()], {}, debug=True)
game.play()