Hello there
I am making a simple particle system, to practice. I want to have a loop, that initialises a threads, and then waits for 1 second.
Now, I am good with the timer (i think…) but where my problem appears, is where I initialise the threads. Because normally I would do it like this:
Thread particle = new Thread(new ParticleAI));
particle.start; //I use two lines, instead of one because I am a bit of a retard :P
So basicly: How do I initialise a thread, without having to name it (so I can initialise more threads, from the same while loop)??
Thanks in advance