aboutsummaryrefslogtreecommitdiff
path: root/turtetris_master/game.py
blob: 9b0c7cf026e7259cc4018626fcd59cc23326878c (plain)
1
2
3
4
5
6
7
8
9
10
class Game:
    "game it self"

    def __init__(self, matrix):
        self.matrix = matrix
        pass

    def tick(self, input):
        "Do game tick"
        return True