Hi ShadowSprite123,
No - just the one return type - just use Parameters with references, eg:
int32 MyFunction(int32& outRet2,int32& outRet3) {
outRet2=42;
outRe3=109;
return 1;
}
int32 ret1,ret2,ret3;
ret1=MyFunction(ret2,ret3);
Hi ShadowSprite123,
No - just the one return type - just use Parameters with references, eg:
int32 MyFunction(int32& outRet2,int32& outRet3) {
outRet2=42;
outRe3=109;
return 1;
}
int32 ret1,ret2,ret3;
ret1=MyFunction(ret2,ret3);