from retro.game import Game from board import Board width = 25 height = 25 board = Board(width,height,.01) score = 0 state= {} #score = 0 #man = Man(board_size) game = Game( board.get_agents(), state, board_size = (width, height) ) game.play()