Resubmit commit 1

Re-wrote the player and board game because i kept getting stuck on creating the walls. There was an agent error so i needed to start from the begining again. I looked up resources online and used the tic tac toe and retro labs for help.
This commit is contained in:
ilmabura
2025-12-07 11:20:03 -05:00
parent cdafa795fc
commit f0840a02fc
7 changed files with 58 additions and 23 deletions

8
game_signature.py Normal file
View File

@@ -0,0 +1,8 @@
from retro.game import Game
import inspect
print("Game.__init__ signature:")
print(inspect.signature(Game.__init__))
print("\nFull source of Game.__init__:\n")
print(inspect.getsource(Game.__init__))