示例#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