Initial commit

This commit is contained in:
2022-10-10 00:19:56 +02:00
commit 0b32b08cb1
4 changed files with 214 additions and 0 deletions

12
main.py Normal file
View File

@ -0,0 +1,12 @@
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()