public CellList(CellList source) { for (int index = 0; index < cLength; index++) { cells[index] = new Cell(source.cells[index]); } }
public PuzzleModel(PuzzleModel source) { Cells = new CellList(source.Cells); }
public PuzzleModel() { Cells = new CellList(); }
public PuzzleModel(PuzzleModel source) { Cells = new CellList(source.Cells); CompletedCellsCount = source.CompletedCellsCount; }
public PuzzleModel() { Cells = new CellList(); CompletedCellsCount = 0; }