3940414243444546
* @param numCols number of rows in the board grid. */ public BlockadeBoard(int numRows, int numCols) { homes = new Homes(); setSize(numRows, numCols); boardAnalyzer = new BoardAnalyzer(this); wallValidator = new WallPlacementValidator(this); }
4647484950515253
} /** copy constructor */ private BlockadeBoard(BlockadeBoard b) { super(b); boardAnalyzer = new BoardAnalyzer(this); homes = new Homes(b.homes); }