public ReplayPlayer(int currentPlayer, Board board, string log) : base(currentPlayer, board) { this.log = log; logReader = new LogReader(log, currentPlayer, board.Width, board.Height);; }
public Connect4Form() { InitializeComponent(); LoadImages(); board = new Board(width, height, this); board.OnStart(); }
public Player(int player, Board board) { this.player = player; this.board = board; }
public HumanPlayer(int player, Board board) : base(player, board) { }
public AIPlayer(int player, int moveLookAhead, Board board) : base(player, board) { this.moveLookAhead = moveLookAhead; CreateAIPlayer(board.Seed); }
public AIPlayer(int player, Board board) : base(player, board) { CreateAIPlayer(board.Seed); }