Cell[][] board; int cols = 3; int rows = 3; int count = 0; void setup() { size(300,300); board = new Cell[cols][rows]; for(int i =0; i< cols; i++){ for(int j = 0; j