Put interface into a separate file

This commit is contained in:
otomo otonami 2022-08-17 14:53:23 +03:00
parent a2e0504aa8
commit 93403cdf83

View File

@ -1,8 +1,5 @@
from tkinter import * from Interface import *
from GameLogic import * from GameLogic import *
VERSION_NUMBER = "0.1" VERSION_NUMBER = "0.1"
root = Tk() generate_new_settings_window()
root.title("Tic-Far-Toe v{}".format(VERSION_NUMBER))
root.mainloop()