Project

General

Profile

Files » main.py

Zhi Jie YEW, 11/06/2025 02:43 PM

 
1
import tkinter as tk
2
from gui import BlenderGUI
3

    
4
if __name__ == "__main__":
5
    """
6
    Main entry point for the application.
7
    Initializes and runs the Tkinter GUI.
8
    """
9
    root = tk.Tk()
10
    app = BlenderGUI(master=root)
11
    root.mainloop()
(5-5/8)