Added default rules

Same as in regular classic TicTacToe.
This commit is contained in:
otomo otonami 2022-08-07 09:22:06 +03:00
parent 418420063a
commit 5b74ecef52

View File

@ -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