Difference between revisions of "Preprocessor"

From theFarWilds
Jump to: navigation, search
(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() {...)
 
 
(One intermediate revision by one user not shown)
Line 1: Line 1:
 
[[Category:Scripts]]
 
[[Category:Scripts]]
  
  //'''include''' <scriptID>
+
  '''#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
+
  #include 236
 
   
 
   
 
  void beforeStart()
 
  void beforeStart()

Latest revision as of 20:23, 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();
}