Quote:
Originally Posted by Devil_Lord2
Oh I see.. So would this be a good thing inside a class / function for ... w/e the function might do.. assuming the point is to be true or false...
|
Not sure what you're asking.
Quote:
|
Also, can you return more then one thing, for instance maybe X and Y? or would you have to return X and Y in an array with X and Y in it?
|
You can only return one value. Use arrays for returning multiple.
Quote:
|
One more thing... xD returns do not return temp. variables? I've had a problem with this and had to make the temp. a this. to pass it back x.x;
|
Functions return values, not variables. You can assign them to whatever variable you want to.