Exemplo n.º 1
0
 public shipwright(int rows, int columns, ISquareTerminator terminator)
 {
     this.rows       = rows;
     this.columns    = columns;
     this.terminator = terminator;
 }
Exemplo n.º 2
0
 public Shipwright(int rows, int cols, ISquareTerminator terminator)
 {
     this.terminator = terminator;
     this.rows       = rows;
     this.cols       = cols;
 }