generated from mwc/project_game
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.
8 lines
208 B
Python
8 lines
208 B
Python
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__)) |