Esempio n. 1
0
 def __init__(self, board_width=7, board_height=6, win_length=4):
     self.actions_count = board_width
     LineBoardGame.__init__(self, board_width, board_height, win_length)
Esempio n. 2
0
 def __init__(self, board_width=7, board_height=6, win_length=4):
   self.actions_count = board_width
   LineBoardGame.__init__(self, board_width, board_height, win_length)
Esempio n. 3
0
 def __init__(self, width=3, height=3, win_length=3):
   self.actions_count = width * height
   LineBoardGame.__init__(self, width, height, win_length)