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.
This commit is contained in:
otomo otonami 2022-08-07 09:26:13 +03:00
parent ab37e797de
commit 468237429e

View File

@ -1,2 +1,7 @@
import pygame from tkinter import *
from GameLogic import * from GameLogic import *
root = Tk()
root.title("Tic-Far-Toe v0.1")
root.mainloop()