Zhi Jie YEW, 11/06/2025 02:43 PM
import tkinter as tk
from gui import BlenderGUI
if __name__ == "__main__":
"""
Main entry point for the application.
Initializes and runs the Tkinter GUI.
root = tk.Tk()
app = BlenderGUI(master=root)
root.mainloop()