from retro.game import Game board_size = (30, 30) class GameMaster: def __init__(self): self.name = 'gm' self.display = False game = Game( [], {" ": "Welcome to Yutnori"}, board_size=board_size ) game.play()