From 5b74ecef5281400c25081a533261dabaa539479b Mon Sep 17 00:00:00 2001 From: oto Date: Sun, 7 Aug 2022 09:22:06 +0300 Subject: [PATCH] Added default rules Same as in regular classic TicTacToe. --- GameLogic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GameLogic.py b/GameLogic.py index 4542005..97b300e 100644 --- a/GameLogic.py +++ b/GameLogic.py @@ -5,7 +5,7 @@ from Player import * class GameLogic(): - def __init__(self, gameMap, playerList, winRowLength, individualMoves): + def __init__(self, gameMap, playerList, winRowLength = 3, individualMoves = 1): self.gameMap = gameMap self.playerList = playerList