13 lines
191 B
Python
13 lines
191 B
Python
from tkinter import Canvas, Tk
|
|
|
|
from game import Game
|
|
|
|
WIDTH = 20
|
|
HEIGHT = 15
|
|
BLOCKSIZE = 50
|
|
|
|
if __name__ == "__main__":
|
|
|
|
game = Game(WIDTH, HEIGHT, blocksize=BLOCKSIZE)
|
|
game.start()
|