예제 #1
0
 public OpenCellsMathod(GameCell[,] field)
     : base(field.GetLength(0), field.GetLength(1))
 {
     _field = field;
     OpenedCells = new List<Cell>();
 }
예제 #2
0
 public SetValuesMathod(GameCell[,] field)
     : base(field.GetLength(0), field.GetLength(1))
 {
     _field = field;
 }