- Joined
- Jan 2, 2020
- Messages
- 1,105
What's the preferable way to multiple outputs in Cerberus functions?
A simple example would be if you have a pair of x and y coordinates that a function changes and now you want to output the new pair.
PSEUDOCODE
A simple example would be if you have a pair of x and y coordinates that a function changes and now you want to output the new pair.
PSEUDOCODE
Code:
Function TransformXandY(float wX,float wY,int &SX,int &SY)
SX = (wX - 10)
SY = (wY - 10)
End