let me explain with a simple example of say how it would be in C# to help understand
public class waveSpawner
{
public class wave
{
int waveNumber;
int enemiesInWave;
float timeBetweenEnemySpawns;
}
public wave[] Waves = new wave[];
}
thanks to in advance for any help or attention