Пример #1
0
 //whenever timer is enables New Generation function from GameOfLife will be called
 //and Based on cell's state update function will change color of cells
 private void timer1_Tick(object sender, EventArgs e)
 {
     life.NewGeneration();
     UpdateColours();
 }