import tkinter as tk from gui.gui import BatailleGUI if __name__ == "__main__": root = tk.Tk() app = BatailleGUI(root) root.mainloop()