tic-far-toe/Main.py
oto 468237429e Switched to TKinter
Switched since the game has no mainloop, and only works when you commit an action. It makes sense, ye know. Maybe when i'll get some better graphics i'll switch to another lib, but for now, I'll use TKinter.
2022-08-07 09:26:13 +03:00

7 lines
106 B
Python

from tkinter import *
from GameLogic import *
root = Tk()
root.title("Tic-Far-Toe v0.1")
root.mainloop()