You have to keep testing it and go back and forth to the code

This commit is contained in:
mdecker6
2025-11-10 12:44:09 -05:00
parent d9cf11291a
commit 34ece06307
7 changed files with 73 additions and 8 deletions

7
cc 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()