Why is Eclipse keeps giving me error on the constructor:
public DenseBoard(Tile t[][]){ Board myBoard = new DenseBoard(t.length, t[0].length); }
I think what you want to do is this
public DenseBoard(Tile t[][]){ this(t.length, t[0].length); }