This commit is contained in:
kdang
2025-12-08 09:49:26 -05:00
parent 8ae74e0c7a
commit d61dc6ff89
6 changed files with 714 additions and 0 deletions

7
arrowkeyagent.py Normal file
View File

@@ -0,0 +1,7 @@
from retro.game import Game
from retro.agent import ArrowKeyAgent
agent = ArrowKeyAgent()
state = {}
game = Game([agent], state)
game.play()