From 93403cdf8384ebdd95322d00b575162fd2d66d19 Mon Sep 17 00:00:00 2001 From: oto Date: Wed, 17 Aug 2022 14:53:23 +0300 Subject: [PATCH] Put interface into a separate file --- Main.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Main.py b/Main.py index 56950fd..6ca3574 100644 --- a/Main.py +++ b/Main.py @@ -1,8 +1,5 @@ -from tkinter import * +from Interface import * from GameLogic import * VERSION_NUMBER = "0.1" -root = Tk() -root.title("Tic-Far-Toe v{}".format(VERSION_NUMBER)) - -root.mainloop() \ No newline at end of file +generate_new_settings_window()