Ok thanks to everyone who helped me figure out how to use makefiles.
Now that i have, i've got an obsession for converting as much of my code into functions as i can!
My question is this:
I use this a lot ( A LOT!)
Is it possible to make this a function such as setupxyz( Some Code Here ); ?Code:for (x = 0; x < number; x++)
{
for (y = 0; y < number; y++)
{
for (z = 0; z < number; z++)
{
//Some code here
}
}
}

