class Game: "game it self" def __init__(self, matrix): self.matrix = matrix pass def tick(self, input): "Do game tick" return True