All pastes #2074035 Raw Edit

Someone

public java v1 · immutable
#2074035 ·published 2011-06-03 08:00 UTC
rendered paste body
public 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];		 }