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