asteroid.py asteroid_spawner.py spaceship.py nav_game.py

This commit is contained in:
njmason2
2025-11-14 00:29:44 -05:00
parent 5356f5076b
commit 24476f3bed
8 changed files with 79 additions and 0 deletions

7
test.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()