Hi,
What's is the best practice for values return in a function in C/C++ for Game Engines??
In C/C++ I can return one value with the sentence return.
Texture = LoadTexture(path);
or I can return the value on second via
LoadTexure(path, &Texture);