Talk:GetVehicleZAngle

From SA-MP Wiki

Revision as of 17:50, 3 May 2012; view current revision
←Older revision | Newer revision→
Jump to: navigation, search

Passed by reference vs passed by value

Passed by reference means that the function can and will use the supplied variables to save and modify data. It will modify an existing variable. Variables that are passed by reference are preceded with an ampersand (&) in the function header. Passed by value means that the function will use those variables and possibly modify them, but the existing, original, variable will not be altered.