Split tictactoe into different files, classes, and functions to comply with MVC

This commit is contained in:
2025-09-22 19:43:52 +02:00
parent 18e1fb9a1e
commit 17b832064c
12 changed files with 357 additions and 0 deletions

3
MVC/main.py Normal file
View File

@@ -0,0 +1,3 @@
import tictactoe
newGame = tictactoe.Tictactoe()
newGame.main()