Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1.  public DenseBoard(int rows, int cols)
  2.   {
  3.       this.rows = rows;
  4.       this.cols = cols;
  5.       Tile[][] tileArray = new Tile[rows][cols];
  6.       DenseBoard freshBoard = new DenseBoard(tileArray);
  7.  
  8.   }
  9.  
  10.   public DenseBoard(Tile t[][])
  11.   {
  12.    
  13.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement