Why is Eclipse keeps giving me error on the constructor:
public DenseBoard(Tile t[][]){ Board myBoard = new DenseBoard(t.length, t[0].length); }
You can just do this to send the values up to parent class.
public DenseBoard(Tile t[][]){ super(t.length, t[0].length); }