Someone
public java v1 · immutablepublic void createCells(int x, int y){ System.out.println("Creating a New map with: " + height + " Rows and " + width + " Columns"); map_cells = new Cell[x][y]; for (Cell[] cell : map_cells){ cell = new Cell[y]; }