Function name

From Game Editor

Revision as of 00:25, 7 October 2008 by Docrabbit (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Function Name

any Non-reserved string can be used for the name of your function.

example:

void myfunctionname (){
...statements
}

and it is called in a similar manner:

myfunctionname();