So I was playing with calling functions within functions and stuff and came up with a question...
in this example:
void MyFunction()
{
DoThing();
DoOtherThing();
}
Does it wait for DoThing to be done before going on to DoOtherThing? or will it do both at the same time?