Files
project_game/arrowkeyagent.py
2025-12-08 09:49:26 -05:00

7 lines
141 B
Python

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