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