コード例 #1
0
ファイル: monte.py プロジェクト: hikota/PyOthello
 def __init__(self, board, move, own_turn):
     Othello.__init__(self)
     self.board = board
     self.turn = 0
     self.own_turn = own_turn
     self.move = move
     self.pass_times = 0
コード例 #2
0
ファイル: ai.py プロジェクト: hikota/PyOthello
 def __init__(self, own_turn):
     Othello.__init__(self)
     self.turn = own_turn
     self.own_turn = own_turn