I have a function for fading out GUIs, but what's the right terminology? E.g.
function fadeGUI (int whatGUI){}//?
function fadeGUI (GUI* whatGUI){}//?
function fadeGUI (gui *whatGUI){}//?
function fadeGUI (what doIputHere){}//?
Sorry if this is a trivial question, but I can't find the syntax in the manual or the forums.
The syntax is the same as when you're declaring a variable, i.e. the second one is correct.
thanks