did some formatting

This commit is contained in:
otomo otonami 2022-08-17 12:38:04 +03:00
parent e53fd7236c
commit 69ce05886d

View File

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