public GameOfLife(int gridHeight, int gridWidth, Cell[,] cells) { World = new World(); World.CreateGrid(gridHeight, gridWidth, cells); }