Difference between revisions of "Preprocessor"
From theFarWilds
(New page: Category:Scripts //'''include''' <scriptID> this will include a script in with yours so you can make common function libraries == Example == //include 236 void beforeStart() {...) |
|||
Line 1: | Line 1: | ||
[[Category:Scripts]] | [[Category:Scripts]] | ||
− | + | #'''include''' <scriptID> | |
this will include a script in with yours so you can make common function libraries | this will include a script in with yours so you can make common function libraries | ||
== Example == | == Example == | ||
− | + | #include 236 | |
void beforeStart() | void beforeStart() |
Revision as of 20:22, 14 April 2010
#include <scriptID> this will include a script in with yours so you can make common function libraries
Example
#include 236 void beforeStart() { some_function_defined_in_236(); }