Files
AztecDiamond/main.py
2024-02-07 14:30:44 +01:00

19 lines
383 B
Python

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