Beispiel #1
0
 private void Restart()
 {
     GeneticAlgorithm.CreateNextGen();
     InitBirds();
     for (int i = 0; i < rock.Length; i++)
     {
         rock[i] = new Obsticle(new Vector2(1920 + spaceBetweenPillers * i, 0));
     }
 }