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