Files
project_game/tetris/game.py
2026-01-07 09:46:26 -05:00

8 lines
171 B
Python

from retro.game import Game
from manager import Manager
agents = [Manager()]
state = {'level': 1}
game = Game(agents, state, board_size=(20, 20), debug=True)
game.play()