//put the stats into arrays for the wave spawner to use
 public void DecodeStats()
 {
     for (int i = 0; i < populationSize; i++)
     {
         List <int> stats = Decode(dna[i].bits);
         waveSpawner.EnemyStatsIntoArrays(stats);
     }
 }