Пример #1
0
 public GameOfLife(int gridHeight, int gridWidth, Cell[,] cells)
 {
     World = new World();
     World.CreateGrid(gridHeight, gridWidth, cells);
 }