Exemple #1
0
 public CellList(CellList source)
 {
     for (int index = 0; index < cLength; index++)
     {
         cells[index] = new Cell(source.cells[index]);
     }
 }
Exemple #2
0
 public PuzzleModel(PuzzleModel source)
 {
     Cells = new CellList(source.Cells);
 }
Exemple #3
0
 public PuzzleModel()
 {
     Cells = new CellList();
 }
Exemple #4
0
 public PuzzleModel(PuzzleModel source)
 {
     Cells = new CellList(source.Cells);
     CompletedCellsCount = source.CompletedCellsCount;
 }
Exemple #5
0
 public PuzzleModel()
 {
     Cells = new CellList();
     CompletedCellsCount = 0;
 }