first commit

This commit is contained in:
=
2024-02-07 14:24:48 +01:00
commit ff58b527de
7 changed files with 374 additions and 0 deletions

19
main.py Normal file
View File

@@ -0,0 +1,19 @@
from aztecDiamond import AztecDiamond
from resizeTracker import ResizeTracker
from menuBar import MenuBar
from tkinter import Tk
def main():
x = 10005
y = 600
root = Tk()
ad = AztecDiamond(x, y)
tracker = ResizeTracker(ad)
root.geometry(str(x)+"x"+str(y)+"+300+300")
menubar = MenuBar(root, ad)
root.mainloop()
if __name__ == '__main__':
main()