Files
AztecDiamond/main.py
2024-02-07 14:24:48 +01:00

20 lines
385 B
Python

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()