oto
468237429e
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.
7 lines
106 B
Python
7 lines
106 B
Python
from tkinter import *
|
|
from GameLogic import *
|
|
|
|
root = Tk()
|
|
root.title("Tic-Far-Toe v0.1")
|
|
|
|
root.mainloop() |