public AlphaBetaSelection(Board board, int depth, IValueHeuristic valueHeuristic, int player) { _board = board; _depth = depth; _valueHeuristic = valueHeuristic; _player = player; }