private void UpdateGrid(List <Cell> cellsThatShouldLive, List <Cell> cellsThatShouldDie) { cellsThatShouldLive.ForEach(cell => { Grid.AddCell(cell); }); cellsThatShouldDie.ForEach(cell => { Grid.RemoveCell(cell); }); }