From 468237429e7aeb885839bb34c52c175e70129f85 Mon Sep 17 00:00:00 2001 From: oto Date: Sun, 7 Aug 2022 09:26:13 +0300 Subject: [PATCH] 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. --- Main.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Main.py b/Main.py index 43ae19a..a6b5b38 100644 --- a/Main.py +++ b/Main.py @@ -1,2 +1,7 @@ -import pygame -from GameLogic import * \ No newline at end of file +from tkinter import * +from GameLogic import * + +root = Tk() +root.title("Tic-Far-Toe v0.1") + +root.mainloop() \ No newline at end of file